ControllerBase.SignOut Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
SignOut() |
Erstellt eine SignOutResult. |
SignOut(AuthenticationProperties) |
Erstellt mit SignOutResult |
SignOut(String[]) |
Erstellt eine SignOutResult mit den angegebenen Authentifizierungsschemas. |
SignOut(AuthenticationProperties, String[]) |
Erstellt eine SignOutResult mit den angegebenen Authentifizierungsschemas und |
SignOut(AuthenticationProperties, String[]) |
Erstellt eine SignOutResult mit den angegebenen Authentifizierungsschemas und |
SignOut()
- Quelle:
- ControllerBase.cs
Erstellt eine SignOutResult.
public:
virtual Microsoft::AspNetCore::Mvc::SignOutResult ^ SignOut();
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.SignOutResult SignOut ();
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member SignOut : unit -> Microsoft.AspNetCore.Mvc.SignOutResult
override this.SignOut : unit -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Overridable Function SignOut () As SignOutResult
Gibt zurück
Die für die Antwort erstellte SignOutResult .
- Attribute
Gilt für:
SignOut(AuthenticationProperties)
- Quelle:
- ControllerBase.cs
Erstellt mit SignOutResultproperties
.
public:
virtual Microsoft::AspNetCore::Mvc::SignOutResult ^ SignOut(Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.SignOutResult SignOut (Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member SignOut : Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.SignOutResult
override this.SignOut : Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Overridable Function SignOut (properties As AuthenticationProperties) As SignOutResult
Parameter
- properties
- AuthenticationProperties
AuthenticationProperties wird verwendet, um den Abmeldevorgang auszuführen.
Gibt zurück
Die für die Antwort erstellte SignOutResult .
- Attribute
Gilt für:
SignOut(String[])
- Quelle:
- ControllerBase.cs
- Quelle:
- ControllerBase.cs
- Quelle:
- ControllerBase.cs
Erstellt eine SignOutResult mit den angegebenen Authentifizierungsschemas.
public:
virtual Microsoft::AspNetCore::Mvc::SignOutResult ^ SignOut(... cli::array <System::String ^> ^ authenticationSchemes);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.SignOutResult SignOut (params string[] authenticationSchemes);
[<Microsoft.AspNetCore.Mvc.NonAction>]
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
Parameter
- authenticationSchemes
- String[]
Die Authentifizierungsschemas, die für den Abmeldevorgang verwendet werden sollen.
Gibt zurück
Die für die Antwort erstellte SignOutResult .
- Attribute
Gilt für:
SignOut(AuthenticationProperties, String[])
- Quelle:
- ControllerBase.cs
- Quelle:
- ControllerBase.cs
- Quelle:
- ControllerBase.cs
Erstellt eine SignOutResult mit den angegebenen Authentifizierungsschemas und properties
.
public:
virtual Microsoft::AspNetCore::Mvc::SignOutResult ^ SignOut(Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties, ... cli::array <System::String ^> ^ authenticationSchemes);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.SignOutResult SignOut (Microsoft.AspNetCore.Authentication.AuthenticationProperties properties, params string[] authenticationSchemes);
[<Microsoft.AspNetCore.Mvc.NonAction>]
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
Parameter
- properties
- AuthenticationProperties
AuthenticationProperties wird verwendet, um den Abmeldevorgang auszuführen.
- authenticationSchemes
- String[]
Das Authentifizierungsschema, das für den Abmeldevorgang verwendet werden soll.
Gibt zurück
Die für die Antwort erstellte SignOutResult .
- Attribute
Gilt für:
SignOut(AuthenticationProperties, String[])
Erstellt eine SignOutResult mit den angegebenen Authentifizierungsschemas und properties
.
public:
virtual Microsoft::AspNetCore::Mvc::SignOutResult ^ SignOut(Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties, ... cli::array <System::String ^> ^ authenticationSchemes);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.SignOutResult SignOut (Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties, params string[] authenticationSchemes);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member SignOut : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.SignOutResult
override this.SignOut : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Overridable Function SignOut (properties As AuthenticationProperties, ParamArray authenticationSchemes As String()) As SignOutResult
Parameter
- properties
- AuthenticationProperties
AuthenticationProperties wird verwendet, um den Abmeldevorgang auszuführen.
- authenticationSchemes
- String[]
Das Authentifizierungsschema, das für den Abmeldevorgang verwendet werden soll.
Gibt zurück
Die für die Antwort erstellte SignOutResult .
- Attribute