Table of Contents

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

int

ConcurrencyStamp

Gets or sets the concurrency stamp.

public virtual string ConcurrencyStamp { get; set; }

Property Value

string

Email

Gets or sets the email address.

public virtual string Email { get; set; }

Property Value

string

EmailConfirmed

Gets or sets whether the email is confirmed.

public virtual bool EmailConfirmed { get; set; }

Property Value

bool

Id

Gets or sets the user ID.

public virtual string Id { get; set; }

Property Value

string

InitialPassword

Gets or sets the initial password.

public virtual string InitialPassword { get; set; }

Property Value

string

LockoutEnabled

Gets or sets whether lockout is enabled.

public virtual bool LockoutEnabled { get; set; }

Property Value

bool

LockoutEnd

Gets or sets the lockout end date/time.

public virtual DateTimeOffset? LockoutEnd { get; set; }

Property Value

DateTimeOffset?

NormalizedEmail

Gets or sets the normalized email address.

public virtual string NormalizedEmail { get; set; }

Property Value

string

NormalizedUserName

Gets or sets the normalized user name.

public virtual string NormalizedUserName { get; set; }

Property Value

string

PasswordHash

Gets or sets the password hash.

public virtual string PasswordHash { get; set; }

Property Value

string

PhoneNumber

Gets or sets the phone number.

public virtual string PhoneNumber { get; set; }

Property Value

string

PhoneNumberConfirmed

Gets or sets whether the phone number is confirmed.

public virtual bool PhoneNumberConfirmed { get; set; }

Property Value

bool

SecurityStamp

Gets or sets the security stamp.

public virtual string SecurityStamp { get; set; }

Property Value

string

TwoFactorEnabled

Gets or sets whether two-factor authentication is enabled.

public virtual bool TwoFactorEnabled { get; set; }

Property Value

bool

UserName

Gets or sets the user name.

public virtual string UserName { get; set; }

Property Value

string

Methods

DeserializeCustomData(string)

Deserializes custom data from JSON string. Override in derived class.

public virtual void DeserializeCustomData(string json)

Parameters

json string

SerializeCustomData()

Serializes custom data to JSON string. Override in derived class.

public virtual string SerializeCustomData()

Returns

string