Delen via


Domain Constructors

Definition

Overloads

Domain()

Initializes a new instance of the Domain class.

Domain(String, IDictionary<String,Object>, String, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the Domain class.

Domain()

Initializes a new instance of the Domain class.

public Domain ();
Public Sub New ()

Applies to

Domain(String, IDictionary<String,Object>, String, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the Domain class.

public Domain (string name, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string authenticationType = default, bool? isDefault = default, bool? isVerified = default);
new Microsoft.Azure.Graph.RBAC.Models.Domain : string * System.Collections.Generic.IDictionary<string, obj> * string * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Graph.RBAC.Models.Domain
Public Sub New (name As String, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional authenticationType As String = Nothing, Optional isDefault As Nullable(Of Boolean) = Nothing, Optional isVerified As Nullable(Of Boolean) = Nothing)

Parameters

name
String

the domain name.

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

authenticationType
String

the type of the authentication into the domain.

isDefault
Nullable<Boolean>

if this is the default domain in the tenant.

isVerified
Nullable<Boolean>

if this domain's ownership is verified.

Applies to