SignOutResult Конструкторы
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Перегрузки
SignOutResult() |
Инициализирует новый экземпляр SignOutResult с помощью схемы выхода по умолчанию. |
SignOutResult(AuthenticationProperties) |
Инициализирует новый экземпляр SignOutResult с помощью схемы выхода по умолчанию.
указанная схема проверки подлинности и |
SignOutResult(IList<String>) |
Инициализирует новый экземпляр SignOutResult с указанными схемами проверки подлинности. |
SignOutResult(String) |
Инициализирует новый экземпляр SignOutResult с указанной схемой проверки подлинности. |
SignOutResult(IList<String>, AuthenticationProperties) |
Инициализирует новый экземпляр SignOutResult с указанными схемами проверки подлинности и |
SignOutResult(IList<String>, AuthenticationProperties) |
Инициализирует новый экземпляр SignOutResult с указанными схемами проверки подлинности и |
SignOutResult(String, AuthenticationProperties) |
Инициализирует новый экземпляр SignOutResult с указанной схемой проверки подлинности и |
SignOutResult(String, AuthenticationProperties) |
Инициализирует новый экземпляр SignOutResult с указанной схемой проверки подлинности и |
SignOutResult()
- Исходный код:
- SignOutResult.cs
- Исходный код:
- SignOutResult.cs
- Исходный код:
- SignOutResult.cs
Инициализирует новый экземпляр SignOutResult с помощью схемы выхода по умолчанию.
public:
SignOutResult();
public SignOutResult ();
Public Sub New ()
Применяется к
SignOutResult(AuthenticationProperties)
- Исходный код:
- SignOutResult.cs
Инициализирует новый экземпляр 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.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))
Параметры
Схемы проверки подлинности, используемые при выходе пользователя.
Применяется к
SignOutResult(String)
- Исходный код:
- SignOutResult.cs
- Исходный код:
- 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
- Исходный код:
- SignOutResult.cs
Инициализирует новый экземпляр SignOutResult с указанными схемами проверки подлинности и 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)
Параметры
Схемы проверки подлинности, используемые при выходе пользователя.
- properties
- AuthenticationProperties
AuthenticationProperties используется для выполнения операции выхода.
Применяется к
SignOutResult(IList<String>, AuthenticationProperties)
Инициализирует новый экземпляр SignOutResult с указанными схемами проверки подлинности и 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)
Параметры
Схема проверки подлинности, используемая при выходе пользователя.
- properties
- AuthenticationProperties
AuthenticationProperties используется для выполнения операции выхода.
Применяется к
SignOutResult(String, AuthenticationProperties)
- Исходный код:
- SignOutResult.cs
- Исходный код:
- SignOutResult.cs
- Исходный код:
- SignOutResult.cs
Инициализирует новый экземпляр SignOutResult с указанной схемой проверки подлинности и 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 с указанной схемой проверки подлинности и 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 используется для выполнения операции выхода.