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

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

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

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)

使用指定的身份验证方案和 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)

使用指定的身份验证方案和 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 用于执行注销操作。

适用于