SignOutResult 생성자

정의

오버로드

SignOutResult()

기본 로그아웃 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다.

SignOutResult(AuthenticationProperties)

기본 로그아웃 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다. 지정된 인증 체계 및 입니다 properties.

SignOutResult(IList<String>)

지정된 인증 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다.

SignOutResult(String)

지정된 인증 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다.

SignOutResult(IList<String>, AuthenticationProperties)

지정된 인증 체계 및 properties를 사용하여 의 SignOutResult 새 instance 초기화합니다.

SignOutResult(IList<String>, AuthenticationProperties)

지정된 인증 체계 및 properties를 사용하여 의 SignOutResult 새 instance 초기화합니다.

SignOutResult(String, AuthenticationProperties)

지정된 인증 체계 및 를 사용하여 의 SignOutResult 새 instance 초기화합니다properties.

SignOutResult(String, AuthenticationProperties)

지정된 인증 체계 및 를 사용하여 의 SignOutResult 새 instance 초기화합니다properties.

SignOutResult()

Source:
SignOutResult.cs
Source:
SignOutResult.cs

기본 로그아웃 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다.

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

적용 대상

SignOutResult(AuthenticationProperties)

기본 로그아웃 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다. 지정된 인증 체계 및 입니다 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>)

Source:
SignOutResult.cs
Source:
SignOutResult.cs

지정된 인증 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다.

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)

Source:
SignOutResult.cs
Source:
SignOutResult.cs

지정된 인증 체계를 사용하여 의 SignOutResult 새 instance 초기화합니다.

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)

Source:
SignOutResult.cs
Source:
SignOutResult.cs

지정된 인증 체계 및 properties를 사용하여 의 SignOutResult 새 instance 초기화합니다.

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 새 instance 초기화합니다.

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)

Source:
SignOutResult.cs
Source:
SignOutResult.cs

지정된 인증 체계 및 를 사용하여 의 SignOutResult 새 instance 초기화합니다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)

매개 변수

authenticationScheme
String

사용자를 로그아웃할 때 사용할 인증 체계입니다.

properties
AuthenticationProperties

AuthenticationProperties 로그아웃 작업을 수행하는 데 사용됩니다.

적용 대상

SignOutResult(String, AuthenticationProperties)

지정된 인증 체계 및 를 사용하여 의 SignOutResult 새 instance 초기화합니다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)

매개 변수

authenticationScheme
String

사용자를 로그아웃할 때 사용할 인증 체계입니다.

properties
AuthenticationProperties

AuthenticationProperties 로그아웃 작업을 수행하는 데 사용됩니다.

적용 대상