1 interface inheriting from IHttpHandler
System.Web (1)
21 implementations of IHttpHandler
System.Runtime.Remoting (1)
System.ServiceModel.Activation (1)
System.Web (12)
System.Web.DataVisualization (1)
System.Web.Extensions (4)
System.Web.Mobile (1)
System.Xaml.Hosting (1)
140 references to IHttpHandler
System.Runtime.Remoting (2)
System.ServiceModel.Activation (7)
System.Web (93)
httpserverutility.cs (6)
338IHttpHandler handler = null;
407public void Execute(IHttpHandler handler, TextWriter writer, bool preserveForm) {
414internal void Execute(IHttpHandler handler, TextWriter writer, bool preserveForm, bool setPreviousPage) {
423private void ExecuteInternal(IHttpHandler handler, TextWriter writer, bool preserveForm, bool setPreviousPage,
720public void Transfer(IHttpHandler handler, bool preserveForm) {
805private void VerifyTransactionFlow(IHttpHandler handler) {
System.Web.DataVisualization (2)
System.Web.DynamicData (3)
System.Web.Extensions (14)
System.Web.Mobile (2)
System.Xaml.Hosting (17)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (17)
29public IHttpHandler GetHandler(HttpContext context, string requestType,
38public void ReleaseHandler(IHttpHandler httphandler)
101IHttpHandler httpHandler;
103private HandlerWrapper(IHttpHandler httpHandler, IHttpHandlerFactory factory)
114public static IHttpHandler Create(
115IHttpHandler httpHandler, IHttpHandlerFactory factory)
172public IHttpHandler GetHandler(HttpContext context, string requestType,
235IHttpHandler GetHandlerFirstTime(HttpContext context, string requestType,
254if (typeof(IHttpHandler).IsAssignableFrom(httpHandlerType))
256IHttpHandler handler = (IHttpHandler)CreateInstance(httpHandlerType);
271IHttpHandler handler = factory.GetHandler(context, requestType, url, pathTranslated);
289IHttpHandler GetHandlerSubSequent(HttpContext context, string requestType,
292if (this.cachedResult is IHttpHandler)
294return ((IHttpHandler)this.cachedResult);
299IHttpHandler handler = factory.GetHandler(context, requestType, url, pathTranslated);
304return (IHttpHandler)CreateInstance((Type)this.cachedResult);