RecruitmentManagementSystem.Model.User.GenerateUserIdentityAsync C# (CSharp) Method

GenerateUserIdentityAsync() public method

public GenerateUserIdentityAsync ( UserManager manager ) : Task
manager UserManager
return Task
        public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<User> manager)
        {
            // Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
            var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
            // Add custom user claims here
            return userIdentity;
        }