AsyncActionDescriptor.EndExecute Method

Returns the result of an asynchronous operation.

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

'Declaration
Public MustOverride Function EndExecute ( _
	asyncResult As IAsyncResult _
) As Object
'Usage
Dim instance As AsyncActionDescriptor 
Dim asyncResult As IAsyncResult 
Dim returnValue As Object 

returnValue = instance.EndExecute(asyncResult)

Parameters

asyncResult
Type: System.IAsyncResult

An object that represents the status of an asynchronous operation.

Return Value

Type: System.Object
The result of an asynchronous operation.
Show: