4 writes to Handler
System.Web (4)
Abstractions\HttpContextWrapper.cs (1)
110_context.Handler = value;
HttpApplication.cs (3)
3312context.Handler = context.RemapHandlerInstance; 3353context.Handler = handler; 3388context.Handler = _application.MapHttpHandler(
21 references to Handler
System.Web (19)
Abstractions\HttpContextWrapper.cs (1)
107return _context.Handler;
HttpApplication.cs (2)
3527IHttpHandler handler = context.Handler; 3633get { return (_application.Context.Handler is IHttpAsyncHandler) ? false : true; }
HttpResponse.cs (2)
2385Page page = _context.Handler as Page; 2453Page page = _context.Handler as Page;
httpserverutility.cs (3)
486Page sourcePage = _context.Handler as Page; 686Page page = _context.Handler as Page; 806Page topPage = _context.Handler as Page;
ImplicitAsyncPreloadModule.cs (3)
57|| context.Handler == null 58|| context.Handler is TransferRequestHandler 59|| context.Handler is DefaultHttpHandler
Management\WebEvents.cs (1)
416Page page = context.Handler as Page;
UI\Page.cs (4)
1679(Context.Handler == null || GetType() != Context.Handler.GetType())) { 4891_context.Handler == this && // not in server execute 5212_context.Handler == this && // not in server execute
UI\WebControls\ModelMethodContext.cs (1)
37Page page = HttpContext.Current.Handler as Page;
Util\AppVerifier.cs (2)
210if (context.Handler != null) { 211httpHandlerType = context.Handler.GetType();
System.Web.Extensions (1)
Handlers\ScriptModule.cs (1)
168if (app.Context.Handler is Page && RestHandlerFactory.IsRestMethodCall(request)) {
System.Web.Mobile (1)
UI\MobileControls\MobilePage.cs (1)
911if (Context.Handler != this)