Sdílet prostřednictvím


PageBase.SignOut Metoda

Definice

Přetížení

SignOut(String[])

Vytvoří se SignOutResult zadanými schématy ověřování.

SignOut(AuthenticationProperties, String[])

Vytvoří se SignOutResult zadanými schématy ověřování a properties.

SignOut(String[])

Zdroj:
PageBase.cs
Zdroj:
PageBase.cs
Zdroj:
PageBase.cs

Vytvoří se SignOutResult zadanými schématy ověřování.

public:
 virtual Microsoft::AspNetCore::Mvc::SignOutResult ^ SignOut(... cli::array <System::String ^> ^ authenticationSchemes);
public virtual Microsoft.AspNetCore.Mvc.SignOutResult SignOut (params string[] authenticationSchemes);
abstract member SignOut : string[] -> Microsoft.AspNetCore.Mvc.SignOutResult
override this.SignOut : string[] -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Overridable Function SignOut (ParamArray authenticationSchemes As String()) As SignOutResult

Parametry

authenticationSchemes
String[]

Schémata ověřování, která se mají použít pro operaci odhlášení.

Návraty

Vytvořený SignOutResult pro odpověď.

Platí pro

SignOut(AuthenticationProperties, String[])

Zdroj:
PageBase.cs
Zdroj:
PageBase.cs
Zdroj:
PageBase.cs

Vytvoří se SignOutResult zadanými schématy ověřování a properties.

public:
 virtual Microsoft::AspNetCore::Mvc::SignOutResult ^ SignOut(Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties, ... cli::array <System::String ^> ^ authenticationSchemes);
public virtual Microsoft.AspNetCore.Mvc.SignOutResult SignOut (Microsoft.AspNetCore.Authentication.AuthenticationProperties properties, params string[] authenticationSchemes);
abstract member SignOut : Microsoft.AspNetCore.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.SignOutResult
override this.SignOut : Microsoft.AspNetCore.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Overridable Function SignOut (properties As AuthenticationProperties, ParamArray authenticationSchemes As String()) As SignOutResult

Parametry

properties
AuthenticationProperties

AuthenticationProperties slouží k provedení operace odhlášení.

authenticationSchemes
String[]

Schéma ověřování, které se má použít pro operaci odhlášení.

Návraty

Vytvořený SignOutResult pro odpověď.

Platí pro