Class User
User account profile.
public class User : EditableEntity
- Inheritance
-
User
- Inherited Members
- Extension Methods
Constructors
User()
public User()
Properties
AccessFailedCount
Number of failed login attempts
public int AccessFailedCount { get; set; }
Property Value
Optional email address
public string? Email { get; set; }
Property Value
EmailConfirmed
Confirmed email
public bool EmailConfirmed { get; set; }
Property Value
Firstname
First name
public string? Firstname { get; set; }
Property Value
Lastname
Last name
public string? Lastname { get; set; }
Property Value
Locale
User preferred locale
public Locale? Locale { get; set; }
Property Value
NormalizedEmail
Normalized email
public string? NormalizedEmail { get; set; }
Property Value
NormalizedUserName
Normalized username
public string? NormalizedUserName { get; set; }
Property Value
PasswordHash
Optional pw hash for manual authentication
public string? PasswordHash { get; set; }
Property Value
Roles
Assigned user roles
public List<User.RoleRef>? Roles { get; set; }
Property Value
Status
Account status
public string? Status { get; set; }
Property Value
UserName
Username
public string? UserName { get; set; }