Class AppIdentityUser
Represents the user entity for the application's identity system.
Inherited Members
Namespace: DataWeb.Identity
Assembly: DataWeb.Core.dll
Syntax
public class AppIdentityUser
Properties
AccessFailedCount
Gets or sets the number of access failures for the user.
Declaration
public int AccessFailedCount { get; set; }
Property Value
Type | Description |
---|---|
int |
Culture
Gets or sets the culture for the user.
Declaration
public string Culture { get; set; }
Property Value
Type | Description |
---|---|
string |
Gets or sets the email address for the user.
Declaration
public string Email { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
Gets or sets the unique identifier.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
IsDataWeb
Gets or sets a value indicating whether the user is a web data user.
Declaration
public bool IsDataWeb { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsEditable
Gets or sets a value indicating whether the user is editable.
Declaration
public bool IsEditable { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsEmailConfirmed
Gets or sets a value indicating whether the user's email address is confirmed.
Declaration
public bool IsEmailConfirmed { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsLockoutEnabled
Gets or sets a value indicating whether the user can be locked out.
Declaration
public bool IsLockoutEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsPhoneNumberConfirmed
Gets or sets a value indicating whether the user's phone number is confirmed.
Declaration
public bool IsPhoneNumberConfirmed { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsTwoFactorEnabled
Gets or sets a value indicating whether two-factor authentication is enabled for the user.
Declaration
public bool IsTwoFactorEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool |
LockoutDateEnd
Gets or sets the date and time when the user's lockout ends.
Declaration
public DateTimeOffset? LockoutDateEnd { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
Password
Gets or sets the password for the user.
Declaration
public string Password { get; set; }
Property Value
Type | Description |
---|---|
string |
PhoneNumber
Gets or sets the phone number for the user.
Declaration
public string PhoneNumber { get; set; }
Property Value
Type | Description |
---|---|
string |
RegisterLocation
Gets or sets the location where the user registered.
Declaration
public string RegisterLocation { get; set; }
Property Value
Type | Description |
---|---|
string |
Roles
Gets or sets the roles for the user.
Declaration
public IList<string> Roles { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
SecurityStamp
Gets or sets the security stamp for the user.
Declaration
public string SecurityStamp { get; set; }
Property Value
Type | Description |
---|---|
string |
UserName
Gets or sets the username for the user.
Declaration
public string UserName { get; set; }
Property Value
Type | Description |
---|---|
string |