Table of Contents

Class EntraDomain

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

Represents an Entra directory domain.

public class EntraDomain : GlobalSerializableBase, IComparable<EntraDomain>
Inheritance
EntraDomain
Implements

Constructors

EntraDomain()

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

public EntraDomain()

Properties

Identifier

Gets or sets the unique identifier of the domain. This is for internal system use only.

public Guid Identifier { get; set; }

Property Value

Guid

IsDefault

Gets or sets whether the domain is the default domain that is used for user creation.

public BooleanOption IsDefault { get; set; }

Property Value

BooleanOption

IsFederated

Gets or sets whether domain authentication is federated with an identity provider.

public BooleanOption IsFederated { get; set; }

Property Value

BooleanOption

IsInitial

Gets or sets whether the domain is the initial domain created by Microsoft Online Services.

public BooleanOption IsInitial { get; set; }

Property Value

BooleanOption

IsRoot

Gets or sets whether the domain is a verified root domain.

public BooleanOption IsRoot { get; set; }

Property Value

BooleanOption

IsVerified

Gets or sets whether the domain has completed domain ownership verification.

public BooleanOption IsVerified { get; set; }

Property Value

BooleanOption

Name

Gets or sets the name of the domain - for example "demonstration.onmicrosoft.com".

public string Name { get; set; }

Property Value

string

Methods

CompareTo(EntraDomain)

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

public int CompareTo(EntraDomain other)

Parameters

other EntraDomain

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

Returns

int

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

ToString()

Returns the name of the domain.

public override string ToString()

Returns

string

The name of the domain.