共用方式為


SignInName Constructors

Definition

Overloads

SignInName()

Initializes a new instance of the SignInName class.

SignInName(IDictionary<String,Object>, String, String)

Initializes a new instance of the SignInName class.

SignInName()

Initializes a new instance of the SignInName class.

public SignInName ();
Public Sub New ()

Applies to

SignInName(IDictionary<String,Object>, String, String)

Initializes a new instance of the SignInName class.

public SignInName (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string type = default, string value = default);
new Microsoft.Azure.Graph.RBAC.Models.SignInName : System.Collections.Generic.IDictionary<string, obj> * string * string -> Microsoft.Azure.Graph.RBAC.Models.SignInName
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional type As String = Nothing, Optional value As String = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

type
String

A string value that can be used to classify user sign-in types in your directory, such as 'emailAddress' or 'userName'.

value
String

The sign-in used by the local account. Must be unique across the company/tenant. For example, 'johnc@example.com'.

Applies to