SignOutResult Konstruktoren

Definition

Überlädt

SignOutResult()

Initialisiert eine neue Instanz von SignOutResult mit dem Standard-Abmeldeschema.

SignOutResult(AuthenticationProperties)

Initialisiert eine neue Instanz von SignOutResult mit dem Standard-Abmeldeschema. angegebenes Authentifizierungsschema und properties.

SignOutResult(IList<String>)

Initialisiert eine neue Instanz von SignOutResult mit den angegebenen Authentifizierungsschemas.

SignOutResult(String)

Initialisiert eine neue Instanz von SignOutResult mit dem angegebenen Authentifizierungsschema.

SignOutResult(IList<String>, AuthenticationProperties)

Initialisiert eine neue Instanz von SignOutResult mit den angegebenen Authentifizierungsschemas und properties.

SignOutResult(IList<String>, AuthenticationProperties)

Initialisiert eine neue Instanz von SignOutResult mit den angegebenen Authentifizierungsschemas und properties.

SignOutResult(String, AuthenticationProperties)

Initialisiert eine neue Instanz von SignOutResult mit dem angegebenen Authentifizierungsschema und properties.

SignOutResult(String, AuthenticationProperties)

Initialisiert eine neue Instanz von SignOutResult mit dem angegebenen Authentifizierungsschema und properties.

SignOutResult()

Quelle:
SignOutResult.cs
Quelle:
SignOutResult.cs
Quelle:
SignOutResult.cs

Initialisiert eine neue Instanz von SignOutResult mit dem Standard-Abmeldeschema.

public:
 SignOutResult();
public SignOutResult ();
Public Sub New ()

Gilt für:

SignOutResult(AuthenticationProperties)

Quelle:
SignOutResult.cs

Initialisiert eine neue Instanz von SignOutResult mit dem Standard-Abmeldeschema. angegebenes Authentifizierungsschema und properties.

public:
 SignOutResult(Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public SignOutResult (Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
new Microsoft.AspNetCore.Mvc.SignOutResult : Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Sub New (properties As AuthenticationProperties)

Parameter

properties
AuthenticationProperties

AuthenticationProperties zum Ausführen des Abmeldevorgangs verwendet.

Gilt für:

SignOutResult(IList<String>)

Quelle:
SignOutResult.cs
Quelle:
SignOutResult.cs
Quelle:
SignOutResult.cs

Initialisiert eine neue Instanz von SignOutResult mit den angegebenen Authentifizierungsschemas.

public:
 SignOutResult(System::Collections::Generic::IList<System::String ^> ^ authenticationSchemes);
public SignOutResult (System.Collections.Generic.IList<string> authenticationSchemes);
new Microsoft.AspNetCore.Mvc.SignOutResult : System.Collections.Generic.IList<string> -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Sub New (authenticationSchemes As IList(Of String))

Parameter

authenticationSchemes
IList<String>

Die Authentifizierungsschemas, die beim Abmelden des Benutzers verwendet werden sollen.

Gilt für:

SignOutResult(String)

Quelle:
SignOutResult.cs
Quelle:
SignOutResult.cs
Quelle:
SignOutResult.cs

Initialisiert eine neue Instanz von SignOutResult mit dem angegebenen Authentifizierungsschema.

public:
 SignOutResult(System::String ^ authenticationScheme);
public SignOutResult (string authenticationScheme);
new Microsoft.AspNetCore.Mvc.SignOutResult : string -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Sub New (authenticationScheme As String)

Parameter

authenticationScheme
String

Das Authentifizierungsschema, das beim Abmelden des Benutzers verwendet werden soll.

Gilt für:

SignOutResult(IList<String>, AuthenticationProperties)

Quelle:
SignOutResult.cs
Quelle:
SignOutResult.cs
Quelle:
SignOutResult.cs

Initialisiert eine neue Instanz von SignOutResult mit den angegebenen Authentifizierungsschemas und properties.

public:
 SignOutResult(System::Collections::Generic::IList<System::String ^> ^ authenticationSchemes, Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public SignOutResult (System.Collections.Generic.IList<string> authenticationSchemes, Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
public SignOutResult (System.Collections.Generic.IList<string> authenticationSchemes, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties);
new Microsoft.AspNetCore.Mvc.SignOutResult : System.Collections.Generic.IList<string> * Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Sub New (authenticationSchemes As IList(Of String), properties As AuthenticationProperties)

Parameter

authenticationSchemes
IList<String>

Die Authentifizierungsschemas, die beim Abmelden des Benutzers verwendet werden sollen.

properties
AuthenticationProperties

AuthenticationProperties zum Ausführen des Abmeldevorgangs verwendet.

Gilt für:

SignOutResult(IList<String>, AuthenticationProperties)

Initialisiert eine neue Instanz von SignOutResult mit den angegebenen Authentifizierungsschemas und properties.

public:
 SignOutResult(System::Collections::Generic::IList<System::String ^> ^ authenticationSchemes, Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
public SignOutResult (System.Collections.Generic.IList<string> authenticationSchemes, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
new Microsoft.AspNetCore.Mvc.SignOutResult : System.Collections.Generic.IList<string> * Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Sub New (authenticationSchemes As IList(Of String), properties As AuthenticationProperties)

Parameter

authenticationSchemes
IList<String>

Das Authentifizierungsschema, das beim Abmelden des Benutzers verwendet werden soll.

properties
AuthenticationProperties

AuthenticationProperties zum Ausführen des Abmeldevorgangs verwendet.

Gilt für:

SignOutResult(String, AuthenticationProperties)

Quelle:
SignOutResult.cs
Quelle:
SignOutResult.cs
Quelle:
SignOutResult.cs

Initialisiert eine neue Instanz von SignOutResult mit dem angegebenen Authentifizierungsschema und properties.

public:
 SignOutResult(System::String ^ authenticationScheme, Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public SignOutResult (string authenticationScheme, Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
public SignOutResult (string authenticationScheme, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties);
new Microsoft.AspNetCore.Mvc.SignOutResult : string * Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Sub New (authenticationScheme As String, properties As AuthenticationProperties)

Parameter

authenticationScheme
String

Das Authentifizierungsschema, das beim Abmelden des Benutzers verwendet werden soll.

properties
AuthenticationProperties

AuthenticationProperties zum Ausführen des Abmeldevorgangs verwendet.

Gilt für:

SignOutResult(String, AuthenticationProperties)

Initialisiert eine neue Instanz von SignOutResult mit dem angegebenen Authentifizierungsschema und properties.

public:
 SignOutResult(System::String ^ authenticationScheme, Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
public SignOutResult (string authenticationScheme, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
new Microsoft.AspNetCore.Mvc.SignOutResult : string * Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.SignOutResult
Public Sub New (authenticationScheme As String, properties As AuthenticationProperties)

Parameter

authenticationScheme
String

Die Authentifizierungsschemas, die beim Abmelden des Benutzers verwendet werden sollen.

properties
AuthenticationProperties

AuthenticationProperties zum Ausführen des Abmeldevorgangs verwendet.

Gilt für: