Class AuthenticationChallengeContext
Represents an authentication challenge context containing information for executing an authentication challenge.
public class AuthenticationChallengeContext : ControllerContext
- Inheritance
-
AuthenticationChallengeContext
- Inherited Members
Constructors
AuthenticationChallengeContext()
Initializes a new instance of the AuthenticationChallengeContext class.
public AuthenticationChallengeContext()
AuthenticationChallengeContext(ControllerContext, ActionDescriptor, ActionResult)
Initializes a new instance of the AuthenticationChallengeContext class.
public AuthenticationChallengeContext(ControllerContext controllerContext, ActionDescriptor actionDescriptor, ActionResult result)
Parameters
controllerContext
ControllerContextThe controller context.
actionDescriptor
ActionDescriptorThe action methods associated with the challenge.
result
ActionResultThe challenge response.
Properties
ActionDescriptor
Gets or sets the action descriptor.
public ActionDescriptor ActionDescriptor { get; set; }
Property Value
- ActionDescriptor
The action descriptor associated with the challenge.
Result
Gets or sets the action result to execute.
public ActionResult Result { get; set; }
Property Value
- ActionResult
The challenge response.