Table of Contents

Class User

Namespace
Tlabs.Data.Entity
Assembly
Tlabs.Data.dll

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

int

Email

Optional email address

public string? Email { get; set; }

Property Value

string

EmailConfirmed

Confirmed email

public bool EmailConfirmed { get; set; }

Property Value

bool

Firstname

First name

public string? Firstname { get; set; }

Property Value

string

Lastname

Last name

public string? Lastname { get; set; }

Property Value

string

Locale

User preferred locale

public Locale? Locale { get; set; }

Property Value

Locale

NormalizedEmail

Normalized email

public string? NormalizedEmail { get; set; }

Property Value

string

NormalizedUserName

Normalized username

public string? NormalizedUserName { get; set; }

Property Value

string

PasswordHash

Optional pw hash for manual authentication

public string? PasswordHash { get; set; }

Property Value

string

Roles

Assigned user roles

public List<User.RoleRef>? Roles { get; set; }

Property Value

List<User.RoleRef>

Status

Account status

public string? Status { get; set; }

Property Value

string

UserName

Username

public string? UserName { get; set; }

Property Value

string