SignOutResult Class

Definition

An ActionResult that on execution invokes HttpContext.SignOutAsync.

public ref class SignOutResult : Microsoft::AspNetCore::Mvc::ActionResult
public class SignOutResult : Microsoft.AspNetCore.Mvc.ActionResult
public class SignOutResult : Microsoft.AspNetCore.Mvc.ActionResult, Microsoft.AspNetCore.Http.IResult
type SignOutResult = class
    inherit ActionResult
type SignOutResult = class
    inherit ActionResult
    interface IResult
Public Class SignOutResult
Inherits ActionResult
Public Class SignOutResult
Inherits ActionResult
Implements IResult
Inheritance
SignOutResult
Implements

Constructors

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 properties.

SignOutResult(IList<String>)

Initializes a new instance of SignOutResult with the specified authentication schemes.

SignOutResult(IList<String>, AuthenticationProperties)

Initializes a new instance of SignOutResult with the specified authentication schemes and properties.

SignOutResult(IList<String>, AuthenticationProperties)

Initializes a new instance of SignOutResult with the specified authentication schemes and properties.

SignOutResult(String)

Initializes a new instance of SignOutResult with the specified authentication scheme.

SignOutResult(String, AuthenticationProperties)

Initializes a new instance of SignOutResult with the specified authentication scheme and properties.

SignOutResult(String, AuthenticationProperties)

Initializes a new instance of SignOutResult with the specified authentication scheme and properties.

Properties

AuthenticationSchemes

Gets or sets the authentication schemes that are challenged.

Properties

Gets or sets the AuthenticationProperties used to perform the sign-out operation.

Methods

ExecuteResult(ActionContext)

Executes the result operation of the action method synchronously. This method is called by MVC to process the result of an action method.

(Inherited from ActionResult)
ExecuteResultAsync(ActionContext)

Executes the result operation of the action method asynchronously. This method is called by MVC to process the result of an action method. The default implementation of this method calls the ExecuteResult(ActionContext) method and returns a completed task.

Explicit Interface Implementations

IResult.ExecuteAsync(HttpContext)

Write an HTTP response reflecting the result.

Applies to