Hi Team
I am facing this issue on my IdentityConfig.cs using asp.net mvc to build user login registration. How do i fix this issue? Please assist me, thanks.
- public class ApplicationSignInManager : SignInManagerstring>
- {
- public ApplicationSignInManager(ApplicationUserManager userManager, IAuthenticationManager authenticationManager)
- : base(userManager, authenticationManager) // System exception here.
- {
- }
- public override Task
CreateUserIdentityAsync(ApplicationUser user) - {
- return user.GenerateUserIdentityAsync((ApplicationUserManager)UserManager);
- }
- public static ApplicationSignInManager Create(IdentityFactoryOptions options, IOwinContext context)
- {
- return new ApplicationSignInManager(context.GetUserManager(), context.Authentication);
- }
- }

Guest UserPosted Mar 4, 2020, 12:14 AM
Viswanatha SwamyPosted Mar 4, 2020, 12:01 AM
Guest UserPosted Mar 3, 2020, 11:21 PM
Viswanatha SwamyPosted Mar 3, 2020, 9:11 AM
Guest UserPosted Mar 3, 2020, 8:42 AM
Viswanatha SwamyPosted Mar 3, 2020, 8:20 AM
Guest UserPosted Mar 3, 2020, 8:09 AM