ChallengeResult Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ChallengeResult() |
Initialise une nouvelle instance de ChallengeResult. |
ChallengeResult(AuthenticationProperties) |
Initialise une nouvelle instance de ChallengeResult avec la |
ChallengeResult(AuthenticationProperties) |
Initialise une nouvelle instance de ChallengeResult avec la |
ChallengeResult(IList<String>) |
Initialise une nouvelle instance de ChallengeResult avec les schémas d’authentification spécifiés. |
ChallengeResult(String) |
Initialise une nouvelle instance de ChallengeResult avec le schéma d’authentification spécifié. |
ChallengeResult(IList<String>, AuthenticationProperties) |
Initialise une nouvelle instance de ChallengeResult avec les schémas d’authentification spécifiés et |
ChallengeResult(IList<String>, AuthenticationProperties) |
Initialise une nouvelle instance de ChallengeResult avec les schémas d’authentification spécifiés et |
ChallengeResult(String, AuthenticationProperties) |
Initialise une nouvelle instance de ChallengeResult avec le schéma d’authentification spécifié et |
ChallengeResult(String, AuthenticationProperties) |
Initialise une nouvelle instance de ChallengeResult avec le schéma d’authentification spécifié et |
ChallengeResult()
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
Initialise une nouvelle instance de ChallengeResult.
public:
ChallengeResult();
public ChallengeResult ();
Public Sub New ()
S’applique à
ChallengeResult(AuthenticationProperties)
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
Initialise une nouvelle instance de ChallengeResult avec la properties
spécifiée.
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)
Paramètres
- properties
- AuthenticationProperties
AuthenticationProperties utilisé pour effectuer la demande d’authentification.
S’applique à
ChallengeResult(AuthenticationProperties)
Initialise une nouvelle instance de ChallengeResult avec la properties
spécifiée.
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)
Paramètres
- properties
- AuthenticationProperties
AuthenticationProperties utilisé pour effectuer la demande d’authentification.
S’applique à
ChallengeResult(IList<String>)
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
Initialise une nouvelle instance de ChallengeResult avec les schémas d’authentification spécifiés.
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))
Paramètres
S’applique à
ChallengeResult(String)
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
Initialise une nouvelle instance de ChallengeResult avec le schéma d’authentification spécifié.
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)
Paramètres
- authenticationScheme
- String
Schéma d’authentification à contester.
S’applique à
ChallengeResult(IList<String>, AuthenticationProperties)
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
Initialise une nouvelle instance de ChallengeResult avec les schémas d’authentification spécifiés et 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)
Paramètres
- properties
- AuthenticationProperties
AuthenticationProperties utilisé pour effectuer la demande d’authentification.
S’applique à
ChallengeResult(IList<String>, AuthenticationProperties)
Initialise une nouvelle instance de ChallengeResult avec les schémas d’authentification spécifiés et 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)
Paramètres
- properties
- AuthenticationProperties
AuthenticationProperties utilisé pour effectuer la demande d’authentification.
S’applique à
ChallengeResult(String, AuthenticationProperties)
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
Initialise une nouvelle instance de ChallengeResult avec le schéma d’authentification spécifié et 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)
Paramètres
- authenticationScheme
- String
Schéma d’authentification à contester.
- properties
- AuthenticationProperties
AuthenticationProperties utilisé pour effectuer la demande d’authentification.
S’applique à
ChallengeResult(String, AuthenticationProperties)
Initialise une nouvelle instance de ChallengeResult avec le schéma d’authentification spécifié et 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)
Paramètres
- authenticationScheme
- String
Schémas d’authentification à contester.
- properties
- AuthenticationProperties
AuthenticationProperties utilisé pour effectuer la demande d’authentification.