TaskAsyncActionDescriptor.Execute Method

Executes the asynchronous action method

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

'Declaration
Public Overrides Function Execute ( _
	controllerContext As ControllerContext, _
	parameters As IDictionary(Of String, Object) _
) As Object
'Usage
Dim instance As TaskAsyncActionDescriptor 
Dim controllerContext As ControllerContext 
Dim parameters As IDictionary(Of String, Object)
Dim returnValue As Object 

returnValue = instance.Execute(controllerContext, _
	parameters)

Parameters

controllerContext
Type: System.Web.Mvc.ControllerContext
The controller context.
parameters
Type: System.Collections.Generic.IDictionary(Of String, Object)
The parameters of the action method.

Return Value

Type: System.Object
The result of executing the asynchronous action method.
Show: