AuthenticationHttpContextExtensions.SignOutAsync 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
SignOutAsync(HttpContext, String) |
Déconnectez un principal pour le schéma spécifié. |
SignOutAsync(HttpContext) |
Déconnectez un principal pour le schéma d’authentification par défaut. Le schéma par défaut pour la déconnexion peut être configuré à l’aide de DefaultSignOutScheme. |
SignOutAsync(HttpContext, AuthenticationProperties) |
Déconnectez un principal pour le schéma d’authentification par défaut. Le schéma par défaut pour la déconnexion peut être configuré à l’aide de DefaultSignOutScheme. |
SignOutAsync(HttpContext, String, AuthenticationProperties) |
Déconnectez un principal pour le schéma spécifié. |
SignOutAsync(HttpContext, String)
Déconnectez un principal pour le schéma spécifié.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task ^ SignOutAsync(Microsoft::AspNetCore::Http::HttpContext ^ context, System::String ^ scheme);
public static System.Threading.Tasks.Task SignOutAsync (this Microsoft.AspNetCore.Http.HttpContext context, string scheme);
public static System.Threading.Tasks.Task SignOutAsync (this Microsoft.AspNetCore.Http.HttpContext context, string? scheme);
static member SignOutAsync : Microsoft.AspNetCore.Http.HttpContext * string -> System.Threading.Tasks.Task
<Extension()>
Public Function SignOutAsync (context As HttpContext, scheme As String) As Task
Paramètres
- context
- HttpContext
Contexte HttpContext .
- scheme
- String
Nom du schéma d’authentification.
Retours
Tâche.
S’applique à
SignOutAsync(HttpContext)
Déconnectez un principal pour le schéma d’authentification par défaut. Le schéma par défaut pour la déconnexion peut être configuré à l’aide de DefaultSignOutScheme.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task ^ SignOutAsync(Microsoft::AspNetCore::Http::HttpContext ^ context);
public static System.Threading.Tasks.Task SignOutAsync (this Microsoft.AspNetCore.Http.HttpContext context);
static member SignOutAsync : Microsoft.AspNetCore.Http.HttpContext -> System.Threading.Tasks.Task
<Extension()>
Public Function SignOutAsync (context As HttpContext) As Task
Paramètres
- context
- HttpContext
Contexte HttpContext .
Retours
Tâche.
S’applique à
SignOutAsync(HttpContext, AuthenticationProperties)
Déconnectez un principal pour le schéma d’authentification par défaut. Le schéma par défaut pour la déconnexion peut être configuré à l’aide de DefaultSignOutScheme.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task ^ SignOutAsync(Microsoft::AspNetCore::Http::HttpContext ^ context, Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public static System.Threading.Tasks.Task SignOutAsync (this Microsoft.AspNetCore.Http.HttpContext context, Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
public static System.Threading.Tasks.Task SignOutAsync (this Microsoft.AspNetCore.Http.HttpContext context, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties);
static member SignOutAsync : Microsoft.AspNetCore.Http.HttpContext * Microsoft.AspNetCore.Authentication.AuthenticationProperties -> System.Threading.Tasks.Task
<Extension()>
Public Function SignOutAsync (context As HttpContext, properties As AuthenticationProperties) As Task
Paramètres
- context
- HttpContext
Contexte HttpContext .
- properties
- AuthenticationProperties
Propriétés AuthenticationProperties .
Retours
Tâche.
S’applique à
SignOutAsync(HttpContext, String, AuthenticationProperties)
Déconnectez un principal pour le schéma spécifié.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task ^ SignOutAsync(Microsoft::AspNetCore::Http::HttpContext ^ context, System::String ^ scheme, Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public static System.Threading.Tasks.Task SignOutAsync (this Microsoft.AspNetCore.Http.HttpContext context, string scheme, Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
public static System.Threading.Tasks.Task SignOutAsync (this Microsoft.AspNetCore.Http.HttpContext context, string? scheme, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties);
static member SignOutAsync : Microsoft.AspNetCore.Http.HttpContext * string * Microsoft.AspNetCore.Authentication.AuthenticationProperties -> System.Threading.Tasks.Task
<Extension()>
Public Function SignOutAsync (context As HttpContext, scheme As String, properties As AuthenticationProperties) As Task
Paramètres
- context
- HttpContext
Contexte HttpContext .
- scheme
- String
Nom du schéma d’authentification.
- properties
- AuthenticationProperties
Propriétés AuthenticationProperties .
Retours
Tâche.