IHttpAsyncHandler

if (applicationInstance is )
{
    IHttpAsyncHandler handler2 = (IHttpAsyncHandler) applicationInstance;
    context.AsyncAppHandler = handler2;
    handler2.BeginProcessRequest(context, this._handlerCompletionCallback, context);
}
else
{
    applicationInstance.ProcessRequest(context);
    this.FinishRequest(context.WorkerRequest, context, null);
}

FK__aspnet_Us__UserI__30F848ED

原文地址:https://www.cnblogs.com/chinaniit/p/1620828.html