Articles.Models.ApplicationUser.GenerateUserIdentityAsync C# (CSharp) Метод

GenerateUserIdentityAsync() публичный Метод

public GenerateUserIdentityAsync ( UserManager manager, string authenticationType ) : Task
manager UserManager
authenticationType string
Результат Task
        public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager, string authenticationType)
        {
            // Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
            var userIdentity = await manager.CreateIdentityAsync(this, authenticationType);
            // Add custom user claims here
            return userIdentity;
        }
    }