MvcHandler.IHttpAsyncHandler.EndProcessRequest Method

Called by ASP.NET when asynchronous request processing has ended.

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

Syntax

'Declaration
Private Sub EndProcessRequest ( _
    result As IAsyncResult _
) Implements IHttpAsyncHandler.EndProcessRequest
'Usage
Dim instance As MvcHandler 
Dim result As IAsyncResult 

CType(instance, IHttpAsyncHandler).EndProcessRequest(result)
void IHttpAsyncHandler.EndProcessRequest(
    IAsyncResult result
)
private:
virtual void EndProcessRequest(
    IAsyncResult^ result
) sealed = IHttpAsyncHandler::EndProcessRequest
private abstract EndProcessRequest : 
        result:IAsyncResult -> unit  
private override EndProcessRequest : 
        result:IAsyncResult -> unit
JScript supports the use of explicit interface implementations, but not the declarations of new ones.

Parameters

Implements

IHttpAsyncHandler.EndProcessRequest(IAsyncResult)

Remarks

This member is an explicit interface member implementation. It can be used only when the MvcHandler instance is cast to an IHttpAsyncHandler interface.

See Also

Reference

MvcHandler Class

System.Web.Mvc Namespace