示例#1
0
        public virtual string GetPasswordHashAsync(ApplicationUser user)
        {
            if (user == null)
                throw new ArgumentNullException("user");

            return user.Password;
        }
示例#2
0
 public virtual string GetSecurityStampAsync(ApplicationUser user)
 {
     return user.UserName;
 }