8 implementations of IHttpAsyncHandler
System.ServiceModel.Activation (2)
System\ServiceModel\Activation\AspNetRouteServiceHttpHandler.cs (1)
13class AspNetRouteServiceHttpHandler : IHttpAsyncHandler, IRequiresSessionState
System\ServiceModel\Activation\ServiceHttpHandlerFactory.cs (1)
33class ServiceHttpHandler : IHttpAsyncHandler, IRequiresSessionState
System.Web (4)
DefaultHttpHandler.cs (1)
17public class DefaultHttpHandler : IHttpAsyncHandler {
Handlers\TransferRequestHandler.cs (1)
12internal class TransferRequestHandler : IHttpAsyncHandler {
HttpApplication.cs (1)
69public class HttpApplication : IComponent, IHttpAsyncHandler, IRequestCompletedNotifier, ISyncContext {
HttpTaskAsyncHandler.cs (1)
18public abstract class HttpTaskAsyncHandler : IHttpAsyncHandler {
System.Web.Extensions (1)
Script\Services\ScriptHandlerFactory.cs (1)
45private class AsyncHandlerWrapper : HandlerWrapper, IHttpAsyncHandler {
System.Xaml.Hosting (1)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (1)
137class AsyncHandlerWrapper : HandlerWrapper, IHttpAsyncHandler
32 references to IHttpAsyncHandler
System.Web (25)
Compilation\PageCodeDomTreeGenerator.cs (5)
53_sourceDataClass.BaseTypes.Add(new CodeTypeReference(typeof(IHttpAsyncHandler))); 459method.ImplementationTypes.Add(new CodeTypeReference(typeof(IHttpAsyncHandler))); 486method.ImplementationTypes.Add(typeof(IHttpAsyncHandler)); 517method.ImplementationTypes.Add(new CodeTypeReference(typeof(IHttpAsyncHandler))); 544method.ImplementationTypes.Add(typeof(IHttpAsyncHandler));
HttpApplication.cs (7)
1464IAsyncResult IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData) { 1494void IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) { 3413private IHttpAsyncHandler _handler; // per call 3544else if (handler is IHttpAsyncHandler) { 3546IHttpAsyncHandler asyncHandler = (IHttpAsyncHandler)handler; 3633get { return (_application.Context.Handler is IHttpAsyncHandler) ? false : true; }
HttpContext.cs (2)
62private IHttpAsyncHandler _asyncAppHandler; // application as handler (not always HttpApplication) 706internal IHttpAsyncHandler AsyncAppHandler {
HttpRuntime.cs (3)
1693if (app is IHttpAsyncHandler) { 1695IHttpAsyncHandler asyncHandler = (IHttpAsyncHandler)app;
httpserverutility.cs (4)
496if (targetPage is IHttpAsyncHandler) { 519else if (handler is IHttpAsyncHandler) { 529IHttpAsyncHandler asyncHandler = (IHttpAsyncHandler)handler;
HttpTaskAsyncHandler.cs (2)
38IAsyncResult IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, object extraData) { 42void IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) {
UI\Page.cs (2)
5734if (!(this is IHttpAsyncHandler)) { 6157if (this is IHttpAsyncHandler) {
System.Web.Extensions (3)
Script\Services\ScriptHandlerFactory.cs (3)
51return ((IHttpAsyncHandler)_originalHandler).BeginProcessRequest(context, cb, extraData); 55((IHttpAsyncHandler)_originalHandler).EndProcessRequest(result); 86if (handler is IHttpAsyncHandler) {
System.Xaml.Hosting (4)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (4)
117if (httpHandler is IHttpAsyncHandler) 119return new AsyncHandlerWrapper((IHttpAsyncHandler)httpHandler, factory); 140IHttpAsyncHandler httpAsyncHandler; 142public AsyncHandlerWrapper(IHttpAsyncHandler httpAsyncHandler, IHttpHandlerFactory factory)