ChallengeResult コンストラクター

定義

オーバーロード

ChallengeResult()

ChallengeResult の新しいインスタンスを初期化します。

ChallengeResult(AuthenticationProperties)

properties を指定して、ChallengeResult の新しいインスタンスを初期化します。

ChallengeResult(AuthenticationProperties)

properties を指定して、ChallengeResult の新しいインスタンスを初期化します。

ChallengeResult(IList<String>)

指定した認証スキームを使用して の ChallengeResult 新しいインスタンスを初期化します。

ChallengeResult(String)

指定した認証スキームを使用して の ChallengeResult 新しいインスタンスを初期化します。

ChallengeResult(IList<String>, AuthenticationProperties)

指定した認証スキームと propertiesを使用して、 のChallengeResult新しいインスタンスを初期化します。

ChallengeResult(IList<String>, AuthenticationProperties)

指定した認証スキームと propertiesを使用して、 のChallengeResult新しいインスタンスを初期化します。

ChallengeResult(String, AuthenticationProperties)

指定した認証スキーム と を使用して、 の ChallengeResult 新しいインスタンスを properties初期化します。

ChallengeResult(String, AuthenticationProperties)

指定した認証スキーム と を使用して、 の ChallengeResult 新しいインスタンスを properties初期化します。

ChallengeResult()

ソース:
ChallengeResult.cs
ソース:
ChallengeResult.cs

ChallengeResult の新しいインスタンスを初期化します。

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

適用対象

ChallengeResult(AuthenticationProperties)

ソース:
ChallengeResult.cs
ソース:
ChallengeResult.cs

properties を指定して、ChallengeResult の新しいインスタンスを初期化します。

public:
 ChallengeResult(Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
public ChallengeResult (Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (properties As AuthenticationProperties)

パラメーター

properties
AuthenticationProperties

AuthenticationProperties 認証チャレンジの実行に使用されます。

適用対象

ChallengeResult(AuthenticationProperties)

properties を指定して、ChallengeResult の新しいインスタンスを初期化します。

public:
 ChallengeResult(Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (properties As AuthenticationProperties)

パラメーター

properties
AuthenticationProperties

AuthenticationProperties 認証チャレンジの実行に使用されます。

適用対象

ChallengeResult(IList<String>)

ソース:
ChallengeResult.cs
ソース:
ChallengeResult.cs

指定した認証スキームを使用して の ChallengeResult 新しいインスタンスを初期化します。

public:
 ChallengeResult(System::Collections::Generic::IList<System::String ^> ^ authenticationSchemes);
public ChallengeResult (System.Collections.Generic.IList<string> authenticationSchemes);
new Microsoft.AspNetCore.Mvc.ChallengeResult : System.Collections.Generic.IList<string> -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationSchemes As IList(Of String))

パラメーター

authenticationSchemes
IList<String>

チャレンジする認証スキーム。

適用対象

ChallengeResult(String)

ソース:
ChallengeResult.cs
ソース:
ChallengeResult.cs

指定した認証スキームを使用して の ChallengeResult 新しいインスタンスを初期化します。

public:
 ChallengeResult(System::String ^ authenticationScheme);
public ChallengeResult (string authenticationScheme);
new Microsoft.AspNetCore.Mvc.ChallengeResult : string -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationScheme As String)

パラメーター

authenticationScheme
String

チャレンジする認証スキーム。

適用対象

ChallengeResult(IList<String>, AuthenticationProperties)

ソース:
ChallengeResult.cs
ソース:
ChallengeResult.cs

指定した認証スキームと propertiesを使用して、 のChallengeResult新しいインスタンスを初期化します。

public:
 ChallengeResult(System::Collections::Generic::IList<System::String ^> ^ authenticationSchemes, Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (System.Collections.Generic.IList<string> authenticationSchemes, Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
public ChallengeResult (System.Collections.Generic.IList<string> authenticationSchemes, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : System.Collections.Generic.IList<string> * Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationSchemes As IList(Of String), properties As AuthenticationProperties)

パラメーター

authenticationSchemes
IList<String>

チャレンジする認証スキーム。

properties
AuthenticationProperties

AuthenticationProperties 認証チャレンジの実行に使用されます。

適用対象

ChallengeResult(IList<String>, AuthenticationProperties)

指定した認証スキームと propertiesを使用して、 のChallengeResult新しいインスタンスを初期化します。

public:
 ChallengeResult(System::Collections::Generic::IList<System::String ^> ^ authenticationSchemes, Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (System.Collections.Generic.IList<string> authenticationSchemes, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : System.Collections.Generic.IList<string> * Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationSchemes As IList(Of String), properties As AuthenticationProperties)

パラメーター

authenticationSchemes
IList<String>

チャレンジする認証スキーム。

properties
AuthenticationProperties

AuthenticationProperties 認証チャレンジの実行に使用されます。

適用対象

ChallengeResult(String, AuthenticationProperties)

ソース:
ChallengeResult.cs
ソース:
ChallengeResult.cs

指定した認証スキーム と を使用して、 の ChallengeResult 新しいインスタンスを properties初期化します。

public:
 ChallengeResult(System::String ^ authenticationScheme, Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (string authenticationScheme, Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
public ChallengeResult (string authenticationScheme, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : string * Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationScheme As String, properties As AuthenticationProperties)

パラメーター

authenticationScheme
String

チャレンジする認証スキーム。

properties
AuthenticationProperties

AuthenticationProperties 認証チャレンジの実行に使用されます。

適用対象

ChallengeResult(String, AuthenticationProperties)

指定した認証スキーム と を使用して、 の ChallengeResult 新しいインスタンスを properties初期化します。

public:
 ChallengeResult(System::String ^ authenticationScheme, Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (string authenticationScheme, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : string * Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationScheme As String, properties As AuthenticationProperties)

パラメーター

authenticationScheme
String

チャレンジする認証スキーム。

properties
AuthenticationProperties

AuthenticationProperties 認証チャレンジの実行に使用されます。

適用対象