次の方法で共有


AuthenticationProperties コンストラクター

定義

オーバーロード

AuthenticationProperties()

AuthenticationProperties クラスの新しいインスタンスを初期化します。

AuthenticationProperties(IDictionary<String,String>)

AuthenticationProperties クラスの新しいインスタンスを初期化します。

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

AuthenticationProperties クラスの新しいインスタンスを初期化します。

AuthenticationProperties()

ソース:
AuthenticationProperties.cs
ソース:
AuthenticationProperties.cs

AuthenticationProperties クラスの新しいインスタンスを初期化します。

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

適用対象

AuthenticationProperties(IDictionary<String,String>)

ソース:
AuthenticationProperties.cs
ソース:
AuthenticationProperties.cs

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))

パラメーター

items
IDictionary<String,String>

使用する状態値ディクショナリ。

属性

適用対象

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

ソース:
AuthenticationProperties.cs
ソース:
AuthenticationProperties.cs

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))

パラメーター

items
IDictionary<String,String>

使用する状態値ディクショナリ。

parameters
IDictionary<String,Object>

使用するパラメーター ディクショナリ。

適用対象