Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: System.Web.Http.Controllers
Assembly: System.Web.Http (in System.Web.Http.dll)
Overload List
Name | Description | |
---|---|---|
![]() |
HttpActionDescriptor() | Initializes a new instance of the HttpActionDescriptor class. |
![]() |
HttpActionDescriptor(HttpControllerDescriptor) | Initializes a new instance of the HttpActionDescriptor class with specified information that describes the controller of the action.. |
See Also
HttpActionDescriptor Class
System.Web.Http.Controllers Namespace
Return to top
HttpActionDescriptor Constructor ()
Initializes a new instance of the HttpActionDescriptor class.
Syntax
protected HttpActionDescriptor()
protected:
HttpActionDescriptor()
new : unit -> HttpActionDescriptor
Protected Sub New
Return to top
HttpActionDescriptor Constructor (HttpControllerDescriptor)
Initializes a new instance of the HttpActionDescriptor class with specified information that describes the controller of the action..
Syntax
protected HttpActionDescriptor(
HttpControllerDescriptor controllerDescriptor
)
protected:
HttpActionDescriptor(
HttpControllerDescriptor^ controllerDescriptor
)
new :
controllerDescriptor:HttpControllerDescriptor -> HttpActionDescriptor
Protected Sub New (
controllerDescriptor As HttpControllerDescriptor
)
Parameters
controllerDescriptor
Type: System.Web.Http.Controllers.HttpControllerDescriptorThe information that describes the controller of the action.
Return to top