Interface IAsyncController
Defines the methods that are required for an asynchronous controller.
public interface IAsyncController : IController
- Inherited Members
Methods
BeginExecute(RequestContext, AsyncCallback, object)
Executes the specified request context.
IAsyncResult BeginExecute(RequestContext requestContext, AsyncCallback callback, object state)
Parameters
requestContext
RequestContextThe request context.
callback
AsyncCallbackThe asynchronous callback method.
state
objectThe state.
Returns
- IAsyncResult
The status of the asynchronous operation.
EndExecute(IAsyncResult)
Ends the asynchronous operation.
void EndExecute(IAsyncResult asyncResult)
Parameters
asyncResult
IAsyncResultThe asynchronous result.