Search Results for

    Show / Hide Table of Contents

    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.Boolean

    DisplayName

    Gets the display name of the identity.

    Declaration
    public string DisplayName { get; }
    Property Value
    Type Description
    System.String

    EmailAddress

    Gets the email address of the identity.

    Declaration
    public string EmailAddress { get; set; }
    Property Value
    Type Description
    System.String

    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.Boolean

    GivenName

    Gets the given name of the identity.

    Declaration
    public string GivenName { get; set; }
    Property Value
    Type Description
    System.String

    IdentityId

    Declaration
    public string IdentityId { get; }
    Property Value
    Type Description
    System.String

    LargePictures

    Gets the large pictures of the identity.

    Declaration
    public string[] LargePictures { get; }
    Property Value
    Type Description
    System.String[]

    MediumPictures

    Gets the medium pictures of the identity.

    Declaration
    public string[] MediumPictures { get; }
    Property Value
    Type Description
    System.String[]

    OldIdentityIds

    Gets the identity id(s) of the identities that were merged.

    Declaration
    public string[] OldIdentityIds { get; }
    Property Value
    Type Description
    System.String[]

    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.String, System.String[]>

    SmallPictures

    Gets the small pictures of the identity.

    Declaration
    public string[] SmallPictures { get; }
    Property Value
    Type Description
    System.String[]

    Surname

    Gets the surname of the identity.

    Declaration
    public string Surname { get; set; }
    Property Value
    Type Description
    System.String
    In This Article