Поделиться через


OAuthChallengeProperties Конструкторы

Определение

Перегрузки

OAuthChallengeProperties()

Инициализирует новый экземпляр OAuthChallengeProperties.

OAuthChallengeProperties(IDictionary<String,String>)

Инициализирует новый экземпляр OAuthChallengeProperties.

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

Инициализирует новый экземпляр OAuthChallengeProperties.

OAuthChallengeProperties()

Исходный код:
OAuthChallengeProperties.cs
Исходный код:
OAuthChallengeProperties.cs
Исходный код:
OAuthChallengeProperties.cs

Инициализирует новый экземпляр OAuthChallengeProperties.

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

Применяется к

OAuthChallengeProperties(IDictionary<String,String>)

Исходный код:
OAuthChallengeProperties.cs
Исходный код:
OAuthChallengeProperties.cs
Исходный код:
OAuthChallengeProperties.cs

Инициализирует новый экземпляр OAuthChallengeProperties.

public:
 OAuthChallengeProperties(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ items);
public OAuthChallengeProperties (System.Collections.Generic.IDictionary<string,string> items);
public OAuthChallengeProperties (System.Collections.Generic.IDictionary<string,string?> items);
new Microsoft.AspNetCore.Authentication.OAuth.OAuthChallengeProperties : System.Collections.Generic.IDictionary<string, string> -> Microsoft.AspNetCore.Authentication.OAuth.OAuthChallengeProperties
Public Sub New (items As IDictionary(Of String, String))

Параметры

items
IDictionary<String,String>

Используемый словарь значений состояния.

Применяется к

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

Исходный код:
OAuthChallengeProperties.cs
Исходный код:
OAuthChallengeProperties.cs
Исходный код:
OAuthChallengeProperties.cs

Инициализирует новый экземпляр OAuthChallengeProperties.

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

Параметры

items
IDictionary<String,String>

Используемый словарь значений состояния.

parameters
IDictionary<String,Object>

Используемый словарь параметров.

Применяется к