Class SqliteIdentityUser
- Namespace
- Hi.SqliteUtils
- Assembly
- HiNc.dll
Base class for SQLite-based identity users.
public class SqliteIdentityUser
- Inheritance
-
SqliteIdentityUser
- Inherited Members
- Extension Methods
Properties
AccessFailedCount
Gets or sets the access failed count.
public virtual int AccessFailedCount { get; set; }
Property Value
ConcurrencyStamp
Gets or sets the concurrency stamp.
public virtual string ConcurrencyStamp { get; set; }
Property Value
Gets or sets the email address.
public virtual string Email { get; set; }
Property Value
EmailConfirmed
Gets or sets whether the email is confirmed.
public virtual bool EmailConfirmed { get; set; }
Property Value
Id
Gets or sets the user ID.
public virtual string Id { get; set; }
Property Value
InitialPassword
Gets or sets the initial password.
public virtual string InitialPassword { get; set; }
Property Value
LockoutEnabled
Gets or sets whether lockout is enabled.
public virtual bool LockoutEnabled { get; set; }
Property Value
LockoutEnd
Gets or sets the lockout end date/time.
public virtual DateTimeOffset? LockoutEnd { get; set; }
Property Value
NormalizedEmail
Gets or sets the normalized email address.
public virtual string NormalizedEmail { get; set; }
Property Value
NormalizedUserName
Gets or sets the normalized user name.
public virtual string NormalizedUserName { get; set; }
Property Value
PasswordHash
Gets or sets the password hash.
public virtual string PasswordHash { get; set; }
Property Value
PhoneNumber
Gets or sets the phone number.
public virtual string PhoneNumber { get; set; }
Property Value
PhoneNumberConfirmed
Gets or sets whether the phone number is confirmed.
public virtual bool PhoneNumberConfirmed { get; set; }
Property Value
SecurityStamp
Gets or sets the security stamp.
public virtual string SecurityStamp { get; set; }
Property Value
TwoFactorEnabled
Gets or sets whether two-factor authentication is enabled.
public virtual bool TwoFactorEnabled { get; set; }
Property Value
UserName
Gets or sets the user name.
public virtual string UserName { get; set; }
Property Value
Methods
DeserializeCustomData(string)
Deserializes custom data from JSON string. Override in derived class.
public virtual void DeserializeCustomData(string json)
Parameters
jsonstring
SerializeCustomData()
Serializes custom data to JSON string. Override in derived class.
public virtual string SerializeCustomData()