共用方式為


SignOutResult 建構函式

定義

多載

SignOutResult()

使用預設登出配置,初始化 的新實例 SignOutResult

SignOutResult(AuthenticationProperties)

使用預設登出配置,初始化 的新實例 SignOutResult 。 指定的驗證配置和 properties

SignOutResult(IList<String>)

使用指定的驗證配置,初始化 的新實例 SignOutResult

SignOutResult(String)

使用指定的驗證配置,初始化 的新實例 SignOutResult

SignOutResult(IList<String>, AuthenticationProperties)

使用指定的驗證配置和 properties ,初始化 的新實例 SignOutResult

SignOutResult(IList<String>, AuthenticationProperties)

使用指定的驗證配置和 properties ,初始化 的新實例 SignOutResult

SignOutResult(String, AuthenticationProperties)

使用指定的驗證配置和 properties ,初始化 的新實例 SignOutResult

SignOutResult(String, AuthenticationProperties)

使用指定的驗證配置和 properties ,初始化 的新實例 SignOutResult

SignOutResult()

來源:
SignOutResult.cs
來源:
SignOutResult.cs

使用預設登出配置,初始化 的新實例 SignOutResult

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

適用於

SignOutResult(AuthenticationProperties)

使用預設登出配置,初始化 的新實例 SignOutResult 。 指定的驗證配置和 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)

參數

properties
AuthenticationProperties

AuthenticationProperties 用來執行登出作業。

適用於

SignOutResult(IList<String>)

來源:
SignOutResult.cs
來源:
SignOutResult.cs

使用指定的驗證配置,初始化 的新實例 SignOutResult

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))

參數

authenticationSchemes
IList<String>

登出使用者時要使用的驗證配置。

適用於

SignOutResult(String)

來源:
SignOutResult.cs
來源:
SignOutResult.cs

使用指定的驗證配置,初始化 的新實例 SignOutResult

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)

參數

authenticationScheme
String

登出使用者時要使用的驗證配置。

適用於

SignOutResult(IList<String>, AuthenticationProperties)

來源:
SignOutResult.cs
來源:
SignOutResult.cs

使用指定的驗證配置和 properties ,初始化 的新實例 SignOutResult

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)

參數

authenticationSchemes
IList<String>

登出使用者時要使用的驗證配置。

properties
AuthenticationProperties

AuthenticationProperties 用來執行登出作業。

適用於

SignOutResult(IList<String>, AuthenticationProperties)

使用指定的驗證配置和 properties ,初始化 的新實例 SignOutResult

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)

參數

authenticationSchemes
IList<String>

登出使用者時要使用的驗證配置。

properties
AuthenticationProperties

AuthenticationProperties 用來執行登出作業。

適用於

SignOutResult(String, AuthenticationProperties)

來源:
SignOutResult.cs
來源:
SignOutResult.cs

使用指定的驗證配置和 properties ,初始化 的新實例 SignOutResult

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)

參數

authenticationScheme
String

登出使用者時要使用的驗證配置。

properties
AuthenticationProperties

AuthenticationProperties 用來執行登出作業。

適用於

SignOutResult(String, AuthenticationProperties)

使用指定的驗證配置和 properties ,初始化 的新實例 SignOutResult

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)

參數

authenticationScheme
String

登出使用者時要使用的驗證配置。

properties
AuthenticationProperties

AuthenticationProperties 用來執行登出作業。

適用於