示例#1
0
        AuthenticationProperties ISignInService.ConfigureExternalAuthenticationProperties(string provider, string redirectUrl, string userId)
        {
            var res = base.ConfigureExternalAuthenticationProperties(provider, redirectUrl, userId);

            var returnRes = new AuthenticationProperties
            {
                IsPersistent = res.IsPersistent,
                RedirectUri  = res.RedirectUri,
                Items        = res.Items
            };

            return(returnRes);
        }
示例#2
0
        public AuthenticationProperties ConfigureExternalAuthenticationProperties(string provider, string redirectUrl)
        {
            var res = base.ConfigureExternalAuthenticationProperties(provider, redirectUrl);

            var returnRes = new AuthenticationProperties
            {
                IsPersistent = res.IsPersistent,
                RedirectUri  = res.RedirectUri,
                Items        = res.Items
            };

            return(returnRes);
        }