AsyncActionDescriptor Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides information about an asynchronous action method, such as its name, controller, parameters, attributes, and filters.
public abstract class AsyncActionDescriptor : System.Web.Mvc.ActionDescriptor
type AsyncActionDescriptor = class
inherit ActionDescriptor
Public MustInherit Class AsyncActionDescriptor
Inherits ActionDescriptor
- Inheritance
- Derived
Constructors
AsyncActionDescriptor() |
Initializes a new instance of the AsyncActionDescriptor class. |
Properties
ActionName |
Gets the name of the action method. (Inherited from ActionDescriptor) |
ControllerDescriptor |
Gets the controller descriptor. (Inherited from ActionDescriptor) |
UniqueId |
Gets the unique ID for the action descriptor using lazy initialization. (Inherited from ActionDescriptor) |
Methods
BeginExecute(ControllerContext, IDictionary<String,Object>, AsyncCallback, Object) |
Invokes the asynchronous action method by using the specified parameters and controller context. |
EndExecute(IAsyncResult) |
Returns the result of an asynchronous operation. |
Execute(ControllerContext, IDictionary<String,Object>) |
Executes the asynchronous action method by using the specified parameters and controller context. |
GetCustomAttributes(Boolean) |
Returns an array of custom attributes that are defined for this member, excluding named attributes. (Inherited from ActionDescriptor) |
GetCustomAttributes(Type, Boolean) |
Returns an array of custom attributes that are defined for this member, identified by type. (Inherited from ActionDescriptor) |
GetFilterAttributes(Boolean) |
Gets the filter attributes. (Inherited from ActionDescriptor) |
GetFilters() |
Obsolete.
Returns the filters that are associated with this action method. (Inherited from ActionDescriptor) |
GetParameters() |
Returns the parameters of the action method. (Inherited from ActionDescriptor) |
GetSelectors() |
Returns the action-method selectors. (Inherited from ActionDescriptor) |
IsDefined(Type, Boolean) |
Determines whether one or more instances of the specified attribute type are defined for this member. (Inherited from ActionDescriptor) |