Share via


ChallengeResult Konstruktory

Definice

Přetížení

ChallengeResult()

Inicializuje novou instanci .ChallengeResult

ChallengeResult(AuthenticationProperties)

Inicializuje novou instanci objektu ChallengeResult se zadaným propertiesparametrem .

ChallengeResult(AuthenticationProperties)

Inicializuje novou instanci objektu ChallengeResult se zadaným propertiesparametrem .

ChallengeResult(IList<String>)

Inicializuje novou instanci ChallengeResult se zadanými schématy ověřování.

ChallengeResult(String)

Inicializuje novou instanci ChallengeResult se zadaným schématem ověřování.

ChallengeResult(IList<String>, AuthenticationProperties)

Inicializuje novou instanci s použitím zadaných ChallengeResult schémat ověřování a properties.

ChallengeResult(IList<String>, AuthenticationProperties)

Inicializuje novou instanci s použitím zadaných ChallengeResult schémat ověřování a properties.

ChallengeResult(String, AuthenticationProperties)

Inicializuje novou instanci ChallengeResult se zadaným schématem ověřování a properties.

ChallengeResult(String, AuthenticationProperties)

Inicializuje novou instanci ChallengeResult se zadaným schématem ověřování a properties.

ChallengeResult()

Zdroj:
ChallengeResult.cs
Zdroj:
ChallengeResult.cs

Inicializuje novou instanci .ChallengeResult

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

Platí pro

ChallengeResult(AuthenticationProperties)

Zdroj:
ChallengeResult.cs
Zdroj:
ChallengeResult.cs

Inicializuje novou instanci objektu ChallengeResult se zadaným propertiesparametrem .

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)

Parametry

properties
AuthenticationProperties

AuthenticationProperties se používá k provedení ověřovacího úkolu.

Platí pro

ChallengeResult(AuthenticationProperties)

Inicializuje novou instanci objektu ChallengeResult se zadaným propertiesparametrem .

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)

Parametry

properties
AuthenticationProperties

AuthenticationProperties se používá k provedení ověřovacího úkolu.

Platí pro

ChallengeResult(IList<String>)

Zdroj:
ChallengeResult.cs
Zdroj:
ChallengeResult.cs

Inicializuje novou instanci ChallengeResult se zadanými schématy ověřování.

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

Parametry

authenticationSchemes
IList<String>

Schémata ověřování, která je třeba zpochybnět.

Platí pro

ChallengeResult(String)

Zdroj:
ChallengeResult.cs
Zdroj:
ChallengeResult.cs

Inicializuje novou instanci ChallengeResult se zadaným schématem ověřování.

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)

Parametry

authenticationScheme
String

Schéma ověřování, které se má zpochybnět.

Platí pro

ChallengeResult(IList<String>, AuthenticationProperties)

Zdroj:
ChallengeResult.cs
Zdroj:
ChallengeResult.cs

Inicializuje novou instanci s použitím zadaných ChallengeResult schémat ověřování a properties.

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)

Parametry

authenticationSchemes
IList<String>

Schéma ověřování, které se má zpochybnět.

properties
AuthenticationProperties

AuthenticationProperties se používá k provedení ověřovacího úkolu.

Platí pro

ChallengeResult(IList<String>, AuthenticationProperties)

Inicializuje novou instanci s použitím zadaných ChallengeResult schémat ověřování a properties.

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)

Parametry

authenticationSchemes
IList<String>

Schéma ověřování, které se má zpochybnět.

properties
AuthenticationProperties

AuthenticationProperties se používá k provedení ověřovacího úkolu.

Platí pro

ChallengeResult(String, AuthenticationProperties)

Zdroj:
ChallengeResult.cs
Zdroj:
ChallengeResult.cs

Inicializuje novou instanci ChallengeResult se zadaným schématem ověřování a 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)

Parametry

authenticationScheme
String

Schémata ověřování, která je třeba zpochybnět.

properties
AuthenticationProperties

AuthenticationProperties se používá k provedení ověřovacího úkolu.

Platí pro

ChallengeResult(String, AuthenticationProperties)

Inicializuje novou instanci ChallengeResult se zadaným schématem ověřování a 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)

Parametry

authenticationScheme
String

Schémata ověřování, která je třeba zpochybnět.

properties
AuthenticationProperties

AuthenticationProperties se používá k provedení ověřovacího úkolu.

Platí pro