AuthenticationChallengeContext Constructors

Definition

Overloads

AuthenticationChallengeContext()

Initializes a new instance of the AuthenticationChallengeContext class.

AuthenticationChallengeContext(ControllerContext, ActionDescriptor, ActionResult)

Initializes a new instance of the AuthenticationChallengeContext class.

AuthenticationChallengeContext()

Initializes a new instance of the AuthenticationChallengeContext class.

public AuthenticationChallengeContext ();
Public Sub New ()

Applies to

AuthenticationChallengeContext(ControllerContext, ActionDescriptor, ActionResult)

Initializes a new instance of the AuthenticationChallengeContext class.

public AuthenticationChallengeContext (System.Web.Mvc.ControllerContext controllerContext, System.Web.Mvc.ActionDescriptor actionDescriptor, System.Web.Mvc.ActionResult result);
new System.Web.Mvc.Filters.AuthenticationChallengeContext : System.Web.Mvc.ControllerContext * System.Web.Mvc.ActionDescriptor * System.Web.Mvc.ActionResult -> System.Web.Mvc.Filters.AuthenticationChallengeContext
Public Sub New (controllerContext As ControllerContext, actionDescriptor As ActionDescriptor, result As ActionResult)

Parameters

controllerContext
ControllerContext

The controller context.

actionDescriptor
ActionDescriptor

The action methods associated with the challenge.

result
ActionResult

The challenge response.

Applies to