Share via


AuthenticationChallengeContext Constructor

 

Initializes a new instance of the AuthenticationChallengeContext class.

Namespace:   System.Web.Mvc.Filters
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Overload List

Name Description
System_CAPS_pubmethod AuthenticationChallengeContext()

Initializes a new instance of the AuthenticationChallengeContext class.

System_CAPS_pubmethod AuthenticationChallengeContext(ControllerContext, ActionDescriptor, ActionResult)

Initializes a new instance of the AuthenticationChallengeContext class.

See Also

AuthenticationChallengeContext Class
System.Web.Mvc.Filters Namespace

Return to top

AuthenticationChallengeContext Constructor ()

Initializes a new instance of the AuthenticationChallengeContext class.

Syntax

public AuthenticationChallengeContext()
public:
AuthenticationChallengeContext()
new : unit -> AuthenticationChallengeContext
Public Sub New

Return to top

AuthenticationChallengeContext Constructor (ControllerContext, ActionDescriptor, ActionResult)

Initializes a new instance of the AuthenticationChallengeContext class.

Syntax

public AuthenticationChallengeContext(
    ControllerContext controllerContext,
    ActionDescriptor actionDescriptor,
    ActionResult result
)
public:
AuthenticationChallengeContext(
    ControllerContext^ controllerContext,
    ActionDescriptor^ actionDescriptor,
    ActionResult^ result
)
new : 
        controllerContext:ControllerContext *
        actionDescriptor:ActionDescriptor *
        result:ActionResult -> AuthenticationChallengeContext
Public Sub New (
    controllerContext As ControllerContext,
    actionDescriptor As ActionDescriptor,
    result As ActionResult
)

Parameters

Return to top