AuthenticationProperties Constructeurs

Définition

Surcharges

AuthenticationProperties()

Initialise une nouvelle instance de la classe AuthenticationProperties.

AuthenticationProperties(IDictionary<String,String>)

Initialise une nouvelle instance de la classe AuthenticationProperties.

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

Initialise une nouvelle instance de la classe AuthenticationProperties.

AuthenticationProperties()

Initialise une nouvelle instance de la classe AuthenticationProperties.

public:
 AuthenticationProperties();
public AuthenticationProperties ();
Public Sub New ()

S’applique à

AuthenticationProperties(IDictionary<String,String>)

Initialise une nouvelle instance de la classe AuthenticationProperties.

public:
 AuthenticationProperties(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ items);
public AuthenticationProperties (System.Collections.Generic.IDictionary<string,string> items);
public AuthenticationProperties (System.Collections.Generic.IDictionary<string,string?> items);
[System.Text.Json.Serialization.JsonConstructor]
public AuthenticationProperties (System.Collections.Generic.IDictionary<string,string?> items);
new Microsoft.AspNetCore.Authentication.AuthenticationProperties : System.Collections.Generic.IDictionary<string, string> -> Microsoft.AspNetCore.Authentication.AuthenticationProperties
[<System.Text.Json.Serialization.JsonConstructor>]
new Microsoft.AspNetCore.Authentication.AuthenticationProperties : System.Collections.Generic.IDictionary<string, string> -> Microsoft.AspNetCore.Authentication.AuthenticationProperties
Public Sub New (items As IDictionary(Of String, String))

Paramètres

items
IDictionary<String,String>

Dictionnaire de valeurs d’état à utiliser.

Attributs

S’applique à

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

Initialise une nouvelle instance de la classe AuthenticationProperties.

public:
 AuthenticationProperties(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ items, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ parameters);
public AuthenticationProperties (System.Collections.Generic.IDictionary<string,string> items, System.Collections.Generic.IDictionary<string,object> parameters);
public AuthenticationProperties (System.Collections.Generic.IDictionary<string,string?>? items, System.Collections.Generic.IDictionary<string,object?>? parameters);
new Microsoft.AspNetCore.Authentication.AuthenticationProperties : System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.AspNetCore.Authentication.AuthenticationProperties
Public Sub New (items As IDictionary(Of String, String), parameters As IDictionary(Of String, Object))

Paramètres

items
IDictionary<String,String>

Dictionnaire de valeurs d’état à utiliser.

parameters
IDictionary<String,Object>

Dictionnaire de paramètres à utiliser.

S’applique à