Class Profile
Represents an identity.
Inheritance
System.Object
Profile
Namespace: TheIdentityHub.AspNetCore.Authentication
Assembly: TheIdentityHub.AspNetCore.Authentication.dll
Syntax
public sealed class Profile : object
Constructors
Profile()
Initializes a new instance of the Profile class.
Declaration
public Profile()
Properties
Disabled
Gets a value indicating whether this Profile is disabled.
Declaration
public bool Disabled { get; }
Property Value
Type | Description |
---|---|
System. |
DisplayName
Gets the display name of the identity.
Declaration
public string DisplayName { get; }
Property Value
Type | Description |
---|---|
System. |
EmailAddress
Gets the email address of the identity.
Declaration
public string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
System. |
EmailAddressVerified
Gets a value indicating whether the email address of the identity has been verified.
Declaration
public bool EmailAddressVerified { get; }
Property Value
Type | Description |
---|---|
System. |
GivenName
Gets the given name of the identity.
Declaration
public string GivenName { get; set; }
Property Value
Type | Description |
---|---|
System. |
IdentityId
Declaration
public string IdentityId { get; }
Property Value
Type | Description |
---|---|
System. |
LargePictures
Gets the large pictures of the identity.
Declaration
public string[] LargePictures { get; }
Property Value
Type | Description |
---|---|
System. |
MediumPictures
Gets the medium pictures of the identity.
Declaration
public string[] MediumPictures { get; }
Property Value
Type | Description |
---|---|
System. |
OldIdentityIds
Gets the identity id(s) of the identities that were merged.
Declaration
public string[] OldIdentityIds { get; }
Property Value
Type | Description |
---|---|
System. |
Picture
Gets the primary picture of the identity.
Declaration
public Uri Picture { get; }
Property Value
Type | Description |
---|---|
Uri |
Properties
Declaration
public Dictionary<string, string[]> Properties { get; }
Property Value
Type | Description |
---|---|
Dictionary<System. |
SmallPictures
Gets the small pictures of the identity.
Declaration
public string[] SmallPictures { get; }
Property Value
Type | Description |
---|---|
System. |
Surname
Gets the surname of the identity.
Declaration
public string Surname { get; set; }
Property Value
Type | Description |
---|---|
System. |