ControllerBase.Challenge Méthode
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
Challenge(AuthenticationProperties, String[]) |
Crée un ChallengeResult avec les schémas d’authentification spécifiés et |
Challenge() |
Crée un ChallengeResult. |
Challenge(AuthenticationProperties) |
Crée un ChallengeResult avec le |
Challenge(AuthenticationProperties) |
Crée un ChallengeResult avec le |
Challenge(String[]) |
Crée un ChallengeResult avec les schémas d’authentification spécifiés. |
Challenge(AuthenticationProperties, String[]) |
Crée un ChallengeResult avec les schémas d’authentification spécifiés et |
Challenge(AuthenticationProperties, String[])
Crée un ChallengeResult avec les schémas d’authentification spécifiés et properties
.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge(Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties, ... cli::array <System::String ^> ^ authenticationSchemes);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge (Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties, params string[] authenticationSchemes);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge (properties As AuthenticationProperties, ParamArray authenticationSchemes As String()) As ChallengeResult
Paramètres
- properties
- AuthenticationProperties
AuthenticationProperties utilisé pour effectuer la demande d’authentification.
- authenticationSchemes
- String[]
Schémas d’authentification à contester.
Retours
La ChallengeResult créée pour la réponse.
- Attributs
S’applique à
Challenge()
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Crée un ChallengeResult.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge();
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge ();
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : unit -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : unit -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge () As ChallengeResult
Retours
La ChallengeResult créée pour la réponse.
- Attributs
Remarques
Le comportement de cette méthode dépend des IAuthenticationService en cours d’utilisation. Status401Unauthorized et Status403Forbidden sont parmi les résultats d’état probables.
S’applique à
Challenge(AuthenticationProperties)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Crée un ChallengeResult avec le properties
spécifié.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge(Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge (Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge (properties As AuthenticationProperties) As ChallengeResult
Paramètres
- properties
- AuthenticationProperties
AuthenticationProperties utilisé pour effectuer la demande d’authentification.
Retours
La ChallengeResult créée pour la réponse.
- Attributs
Remarques
Le comportement de cette méthode dépend des IAuthenticationService en cours d’utilisation. Status401Unauthorized et Status403Forbidden sont parmi les résultats d’état probables.
S’applique à
Challenge(AuthenticationProperties)
Crée un ChallengeResult avec le properties
spécifié.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge(Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge (Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge (properties As AuthenticationProperties) As ChallengeResult
Paramètres
- properties
- AuthenticationProperties
AuthenticationProperties utilisé pour effectuer la demande d’authentification.
Retours
La ChallengeResult créée pour la réponse.
- Attributs
S’applique à
Challenge(String[])
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Crée un ChallengeResult avec les schémas d’authentification spécifiés.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge(... cli::array <System::String ^> ^ authenticationSchemes);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge (params string[] authenticationSchemes);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge (ParamArray authenticationSchemes As String()) As ChallengeResult
Paramètres
- authenticationSchemes
- String[]
Schémas d’authentification à contester.
Retours
La ChallengeResult créée pour la réponse.
- Attributs
Remarques
Le comportement de cette méthode dépend des IAuthenticationService en cours d’utilisation. Status401Unauthorized et Status403Forbidden sont parmi les résultats d’état probables.
S’applique à
Challenge(AuthenticationProperties, String[])
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Crée un ChallengeResult avec les schémas d’authentification spécifiés et properties
.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge(Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties, ... cli::array <System::String ^> ^ authenticationSchemes);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge (Microsoft.AspNetCore.Authentication.AuthenticationProperties properties, params string[] authenticationSchemes);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : Microsoft.AspNetCore.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : Microsoft.AspNetCore.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge (properties As AuthenticationProperties, ParamArray authenticationSchemes As String()) As ChallengeResult
Paramètres
- properties
- AuthenticationProperties
AuthenticationProperties utilisé pour effectuer la demande d’authentification.
- authenticationSchemes
- String[]
Schémas d’authentification à contester.
Retours
La ChallengeResult créée pour la réponse.
- Attributs
Remarques
Le comportement de cette méthode dépend des IAuthenticationService en cours d’utilisation. Status401Unauthorized et Status403Forbidden sont parmi les résultats d’état probables.