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
requestContextRequestContextThe request context.
callbackAsyncCallbackThe asynchronous callback method.
stateobjectThe state.
Returns
- IAsyncResult
The status of the asynchronous operation.
EndExecute(IAsyncResult)
Ends the asynchronous operation.
void EndExecute(IAsyncResult asyncResult)
Parameters
asyncResultIAsyncResultThe asynchronous result.