Freigeben über


ChallengeResult Konstruktoren

Definition

Überlädt

ChallengeResult()

Initialisiert eine neue Instanz von ChallengeResult.

ChallengeResult(AuthenticationProperties)

Initialisiert eine neue Instanz von ChallengeResult mit dem angegebenen properties.

ChallengeResult(AuthenticationProperties)

Initialisiert eine neue Instanz von ChallengeResult mit dem angegebenen properties.

ChallengeResult(IList<String>)

Initialisiert eine neue Instanz von ChallengeResult mit den angegebenen Authentifizierungsschemas.

ChallengeResult(String)

Initialisiert eine neue Instanz von ChallengeResult mit dem angegebenen Authentifizierungsschema.

ChallengeResult(IList<String>, AuthenticationProperties)

Initialisiert eine neue Instanz von ChallengeResult mit den angegebenen Authentifizierungsschemas und properties.

ChallengeResult(IList<String>, AuthenticationProperties)

Initialisiert eine neue Instanz von ChallengeResult mit den angegebenen Authentifizierungsschemas und properties.

ChallengeResult(String, AuthenticationProperties)

Initialisiert eine neue Instanz von ChallengeResult mit dem angegebenen Authentifizierungsschema und properties.

ChallengeResult(String, AuthenticationProperties)

Initialisiert eine neue Instanz von ChallengeResult mit dem angegebenen Authentifizierungsschema und properties.

ChallengeResult()

Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs

Initialisiert eine neue Instanz von ChallengeResult.

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

Gilt für:

ChallengeResult(AuthenticationProperties)

Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs

Initialisiert eine neue Instanz von ChallengeResult mit dem angegebenen properties.

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)

Parameter

properties
AuthenticationProperties

AuthenticationProperties verwendet, um die Authentifizierungsabfrage auszuführen.

Gilt für:

ChallengeResult(AuthenticationProperties)

Initialisiert eine neue Instanz von ChallengeResult mit dem angegebenen properties.

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)

Parameter

properties
AuthenticationProperties

AuthenticationProperties verwendet, um die Authentifizierungsabfrage auszuführen.

Gilt für:

ChallengeResult(IList<String>)

Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs

Initialisiert eine neue Instanz von ChallengeResult mit den angegebenen Authentifizierungsschemas.

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

Parameter

authenticationSchemes
IList<String>

Die zu fordernden Authentifizierungsschemas.

Gilt für:

ChallengeResult(String)

Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs

Initialisiert eine neue Instanz von ChallengeResult mit dem angegebenen Authentifizierungsschema.

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)

Parameter

authenticationScheme
String

Das zu fordernde Authentifizierungsschema.

Gilt für:

ChallengeResult(IList<String>, AuthenticationProperties)

Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs

Initialisiert eine neue Instanz von ChallengeResult mit den angegebenen Authentifizierungsschemas und 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)

Parameter

authenticationSchemes
IList<String>

Die zu fordernden Authentifizierungsschemas.

properties
AuthenticationProperties

AuthenticationProperties verwendet, um die Authentifizierungsabfrage auszuführen.

Gilt für:

ChallengeResult(IList<String>, AuthenticationProperties)

Initialisiert eine neue Instanz von ChallengeResult mit den angegebenen Authentifizierungsschemas und 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)

Parameter

authenticationSchemes
IList<String>

Das zu fordernde Authentifizierungsschema.

properties
AuthenticationProperties

AuthenticationProperties verwendet, um die Authentifizierungsabfrage auszuführen.

Gilt für:

ChallengeResult(String, AuthenticationProperties)

Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs
Quelle:
ChallengeResult.cs

Initialisiert eine neue Instanz von ChallengeResult mit dem angegebenen Authentifizierungsschema und 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)

Parameter

authenticationScheme
String

Das zu fordernde Authentifizierungsschema.

properties
AuthenticationProperties

AuthenticationProperties verwendet, um die Authentifizierungsabfrage auszuführen.

Gilt für:

ChallengeResult(String, AuthenticationProperties)

Initialisiert eine neue Instanz von ChallengeResult mit dem angegebenen Authentifizierungsschema und 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)

Parameter

authenticationScheme
String

Die zu fordernden Authentifizierungsschemas.

properties
AuthenticationProperties

AuthenticationProperties verwendet, um die Authentifizierungsabfrage auszuführen.

Gilt für: