Class UserData
Represents user data from the store.
Inherited Members
Namespace: DataWeb.Identity
Assembly: DataWeb.Core.dll
Syntax
public class UserData
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 |
IdMaster
Gets or sets the unique identifier.
Declaration
public string IdMaster { get; set; }
Property Value
Type | Description |
---|---|
string |
IsDataWeb
Gets or sets a value indicating whether the user is a data web 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 email address has been confirmed for the user.
Declaration
public bool IsEmailConfirmed { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsLockoutEnabled
Gets or sets a value indicating whether lockout is enabled for the user.
Declaration
public bool IsLockoutEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsPhoneNumberConfirmed
Gets or sets a value indicating whether the phone number has been confirmed for the user.
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 end date for the user's lockout period.
Declaration
public DateTimeOffset? LockoutDateEnd { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
Password
Gets or sets the user's password.
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 registration location for the user.
Declaration
public string RegisterLocation { get; set; }
Property Value
Type | Description |
---|---|
string |
Roles
Gets or sets the list of 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 user name.
Declaration
public string UserName { get; set; }
Property Value
Type | Description |
---|---|
string |