Show / Hide Table of Contents

Interface IListUser

Represents a combined user and person.

Inherited Members
IPerson.OrganisationId
IPerson.GetClaims(String, String)
IPersonName.FirstName
IPersonName.LastName
IEventAggregate.RaiseEvent(IEvent)
IUserIdentifiers.UserName
IUserIdentifiers.IsSystemUser
IUniqueIdentifier.Id
IHaveEmail.Email
Namespace: IRM.AspNetCore.Identity
Assembly: IRM.AspNetCore.Identity.dll
Syntax
public interface IListUser : IPerson, IPersonName, IEventAggregate, IUserIdentifiers, IUniqueIdentifier, IHaveEmail

Properties

IsLockedOut

Gets or sets a flag indicating if the user is locked out or not.

Declaration
bool IsLockedOut { get; set; }
Property Value
Boolean

True if the user is locked out, otherwise false.

IsValid

Gets if the user is valid to sign-in.

Declaration
bool IsValid { get; set; }
Property Value
Boolean

True if the user is valid to sign-in; otherwise false.

OrganisationName

Gets or sets the name of the organisation (if the person belongs to one)

Declaration
string OrganisationName { get; set; }
Property Value
String

Extension Methods

PersonExtensions.GetInitials(IPersonName)
PersonExtensions.GetFullName(IPerson, String)
Back to top Generated by DocFX