Search Results for

    Show / Hide Table of Contents

    Class Profile

    Represents an identity.

    Inheritance
    System.Object
    Profile
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: TheIdentityHub
    Assembly: TheIdentityHub.dll
    Syntax
    [DataContract]
    public sealed class Profile

    Constructors

    Profile()

    Initializes a new instance of the Profile class.

    Declaration
    public Profile()

    Properties

    Disabled

    Gets or sets 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

    Gets the identifier of the identity.

    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
    System.Uri

    Properties

    Gets the properties.

    Declaration
    public Dictionary<string, string[]> Properties { get; }
    Property Value
    Type Description
    System.Collections.Generic.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