Table of Contents

Class EntraDirectoryUser

Namespace
CENTREL.XIA.Configuration.Types
Assembly
CENTREL.XIA.Configuration.Types.dll

Represents an Entra directory user.

public class EntraDirectoryUser : GlobalSerializableClassicBase, IComparable<EntraDirectoryUser>
Inheritance
EntraDirectoryUser
Implements

Constructors

EntraDirectoryUser()

Initializes a new instance of the CENTREL.XIA.Configuration.Types.EntraDirectoryUser class.

public EntraDirectoryUser()

Properties

DisplayName

Gets or sets the display name of the user.

public string DisplayName { get; set; }

Property Value

string

Identifier

Gets or sets the unique identifier of the user in GUID format.

public Guid Identifier { get; set; }

Property Value

Guid

IsEnabled

Gets or sets whether the user is enabled.

public BooleanOption IsEnabled { get; set; }

Property Value

BooleanOption

UserPrincipalName

Gets or sets the user principal name of the user.

public string UserPrincipalName { get; set; }

Property Value

string

Methods

CompareTo(EntraDirectoryUser)

Compares two CENTREL.XIA.Configuration.Types.EntraDirectoryUser objects to allow sorting alphabetically by display name.

public int CompareTo(EntraDirectoryUser other)

Parameters

other EntraDirectoryUser

The CENTREL.XIA.Configuration.Types.EntraDirectoryUser to compare to.

Returns

int

The sort order of the two CENTREL.XIA.Configuration.Types.EntraDirectoryUser objects.

ToString()

Returns the display name of the user.

public override string ToString()

Returns

string

The display name of the user.