SignOutResult Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SignOutResult() |
Initializes a new instance of SignOutResult with the default sign out scheme. |
SignOutResult(AuthenticationProperties) |
Initializes a new instance of SignOutResult with the default sign out scheme.
specified authentication scheme and |
SignOutResult(IList<String>) |
Initializes a new instance of SignOutResult with the specified authentication schemes. |
SignOutResult(String) |
Initializes a new instance of SignOutResult with the specified authentication scheme. |
SignOutResult(IList<String>, AuthenticationProperties) |
Initializes a new instance of SignOutResult with the
specified authentication schemes and |
SignOutResult(IList<String>, AuthenticationProperties) |
Initializes a new instance of SignOutResult with the
specified authentication schemes and |
SignOutResult(String, AuthenticationProperties) |
Initializes a new instance of SignOutResult with the
specified authentication scheme and |
SignOutResult(String, AuthenticationProperties) |
Initializes a new instance of SignOutResult with the
specified authentication scheme and |
SignOutResult()
- Source:
- SignOutResult.cs
- Source:
- SignOutResult.cs
- Source:
- SignOutResult.cs
Initializes a new instance of SignOutResult with the default sign out scheme.
public:
SignOutResult();
public SignOutResult ();
Public Sub New ()
Applies to
SignOutResult(AuthenticationProperties)
- Source:
- SignOutResult.cs
Initializes a new instance of SignOutResult with the default sign out scheme.
specified authentication scheme and 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)
Parameters
- properties
- AuthenticationProperties
AuthenticationProperties used to perform the sign-out operation.
Applies to
SignOutResult(IList<String>)
- Source:
- SignOutResult.cs
- Source:
- SignOutResult.cs
- Source:
- SignOutResult.cs
Initializes a new instance of SignOutResult with the specified authentication schemes.
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))
Parameters
Applies to
SignOutResult(String)
- Source:
- SignOutResult.cs
- Source:
- SignOutResult.cs
- Source:
- SignOutResult.cs
Initializes a new instance of SignOutResult with the specified authentication scheme.
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)
Parameters
- authenticationScheme
- String
The authentication scheme to use when signing out the user.
Applies to
SignOutResult(IList<String>, AuthenticationProperties)
- Source:
- SignOutResult.cs
- Source:
- SignOutResult.cs
- Source:
- SignOutResult.cs
Initializes a new instance of SignOutResult with the
specified authentication schemes and 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)
Parameters
- properties
- AuthenticationProperties
AuthenticationProperties used to perform the sign-out operation.
Applies to
SignOutResult(IList<String>, AuthenticationProperties)
Initializes a new instance of SignOutResult with the
specified authentication schemes and 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)
Parameters
- properties
- AuthenticationProperties
AuthenticationProperties used to perform the sign-out operation.
Applies to
SignOutResult(String, AuthenticationProperties)
- Source:
- SignOutResult.cs
- Source:
- SignOutResult.cs
- Source:
- SignOutResult.cs
Initializes a new instance of SignOutResult with the
specified authentication scheme and 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)
Parameters
- authenticationScheme
- String
The authentication scheme to use when signing out the user.
- properties
- AuthenticationProperties
AuthenticationProperties used to perform the sign-out operation.
Applies to
SignOutResult(String, AuthenticationProperties)
Initializes a new instance of SignOutResult with the
specified authentication scheme and 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)
Parameters
- authenticationScheme
- String
The authentication schemes to use when signing out the user.
- properties
- AuthenticationProperties
AuthenticationProperties used to perform the sign-out operation.