Exemple #1
0
        public static AppSignInManager Create(IdentityFactoryOptions <AppSignInManager> options, IOwinContext context)
        {
            AppUserManager userManager = context.GetUserManager <AppUserManager>();

            return(new AppSignInManager(userManager, context.Authentication));
        }
Exemple #2
0
 public AppSignInManager(AppUserManager userManager, IAuthenticationManager authentication)
     : base(userManager, authentication)
 {
 }