8 implementations of BeginProcessRequest
System.ServiceModel.Activation (2)
System\ServiceModel\Activation\AspNetRouteServiceHttpHandler.cs (1)
46
public IAsyncResult
BeginProcessRequest
(HttpContext context, AsyncCallback callback, object extraData)
System\ServiceModel\Activation\ServiceHttpHandlerFactory.cs (1)
59
public IAsyncResult
BeginProcessRequest
(HttpContext context, AsyncCallback callback, object extraData)
System.Web (4)
DefaultHttpHandler.cs (1)
61
public virtual IAsyncResult
BeginProcessRequest
(HttpContext context, AsyncCallback callback, Object state) {
Handlers\TransferRequestHandler.cs (1)
13
public IAsyncResult
BeginProcessRequest
(HttpContext context, AsyncCallback cb, object extraData)
HttpApplication.cs (1)
1464
IAsyncResult IHttpAsyncHandler.
BeginProcessRequest
(HttpContext context, AsyncCallback cb, Object extraData) {
HttpTaskAsyncHandler.cs (1)
38
IAsyncResult IHttpAsyncHandler.
BeginProcessRequest
(HttpContext context, AsyncCallback cb, object extraData) {
System.Web.Extensions (1)
Script\Services\ScriptHandlerFactory.cs (1)
50
public IAsyncResult
BeginProcessRequest
(HttpContext context, AsyncCallback cb, object extraData) {
System.Xaml.Hosting (1)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (1)
148
public IAsyncResult
BeginProcessRequest
(HttpContext context, AsyncCallback cb, object extraData)
6 references to BeginProcessRequest
System.Web (4)
HttpApplication.cs (1)
3553
var beginProcessRequestDelegate = AppVerifier.WrapBeginMethod<HttpContext>(_application, asyncHandler.
BeginProcessRequest
);
HttpRuntime.cs (1)
1697
asyncHandler.
BeginProcessRequest
(context, _handlerCompletionCallback, context);
httpserverutility.cs (2)
534
IAsyncResult ar = asyncHandler.
BeginProcessRequest
(_context, null, null);
582
ar = asyncHandler.
BeginProcessRequest
(_context,
System.Web.Extensions (1)
Script\Services\ScriptHandlerFactory.cs (1)
51
return ((IHttpAsyncHandler)_originalHandler).
BeginProcessRequest
(context, cb, extraData);
System.Xaml.Hosting (1)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (1)
150
return this.httpAsyncHandler.
BeginProcessRequest
(context, cb, extraData);