Search Results for

    Show / Hide Table of Contents

    Struct UserIdentity

    Represents the identity of an user, including the identifier (username) and the display name.

    Inherited Members
    System.ValueType.Equals(System.Object)
    System.ValueType.GetHashCode()
    System.ValueType.ToString()
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetType()
    Namespace: VMS.TPS.Common.Model.Types
    Assembly: VMS.TPS.Common.Model.Types.dll
    Syntax
    public struct UserIdentity

    Constructors

    UserIdentity(String, String)

    Creates a new UserIdentity value.

    Declaration
    public UserIdentity(string id, string displayName)
    Parameters
    Type Name Description
    System.String id

    The user identifier including the domain name, such as 'domain\user'.

    System.String displayName

    The display name of the user.

    Fields

    DisplayName

    The display name of the user.

    Declaration
    public readonly string DisplayName
    Field Value
    Type Description
    System.String

    Id

    The user identifier including the domain name, such as 'domain\user'.

    Declaration
    public readonly string Id
    Field Value
    Type Description
    System.String
    In This Article
    Back to top