共用方式為


ADGroup Constructors

Definition

Overloads

ADGroup()

Initializes a new instance of the ADGroup class.

ADGroup(IDictionary<String,Object>, String, Nullable<DateTime>, String, Nullable<Boolean>, String, Nullable<Boolean>, String)

Initializes a new instance of the ADGroup class.

ADGroup()

Initializes a new instance of the ADGroup class.

public ADGroup ();
Public Sub New ()

Applies to

ADGroup(IDictionary<String,Object>, String, Nullable<DateTime>, String, Nullable<Boolean>, String, Nullable<Boolean>, String)

Initializes a new instance of the ADGroup class.

public ADGroup (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string objectId = default, DateTime? deletionTimestamp = default, string displayName = default, bool? mailEnabled = default, string mailNickname = default, bool? securityEnabled = default, string mail = default);
new Microsoft.Azure.Graph.RBAC.Models.ADGroup : System.Collections.Generic.IDictionary<string, obj> * string * Nullable<DateTime> * string * Nullable<bool> * string * Nullable<bool> * string -> Microsoft.Azure.Graph.RBAC.Models.ADGroup
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional objectId As String = Nothing, Optional deletionTimestamp As Nullable(Of DateTime) = Nothing, Optional displayName As String = Nothing, Optional mailEnabled As Nullable(Of Boolean) = Nothing, Optional mailNickname As String = Nothing, Optional securityEnabled As Nullable(Of Boolean) = Nothing, Optional mail As String = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

objectId
String

The object ID.

deletionTimestamp
Nullable<DateTime>

The time at which the directory object was deleted.

displayName
String

The display name of the group.

mailEnabled
Nullable<Boolean>

Whether the group is mail-enabled. Must be false. This is because only pure security groups can be created using the Graph API.

mailNickname
String

The mail alias for the group.

securityEnabled
Nullable<Boolean>

Whether the group is security-enable.

mail
String

The primary email address of the group.

Applies to