8 implementations of GetHandler
System.Runtime.Remoting (1)
channels\http\httpremotinghandler.cs (1)
373public IHttpHandler GetHandler(HttpContext context, string verb, string url, string filePath)
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\ServiceHttpHandlerFactory.cs (1)
18public IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated)
System.Web (3)
Configuration\HandlerFactoryWrapper.cs (1)
28public IHttpHandler GetHandler(HttpContext context, String requestType, String url, String pathTranslated) {
UI\PageHandlerFactory.cs (1)
36public virtual IHttpHandler GetHandler(HttpContext context, string requestType, string virtualPath, string path) {
UI\SimpleHandlerFactory.cs (1)
26public virtual IHttpHandler GetHandler(HttpContext context, string requestType,
System.Web.Extensions (2)
Script\Services\RestHandlerFactory.cs (1)
15public virtual IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated) {
Script\Services\ScriptHandlerFactory.cs (1)
70public virtual IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated) {
System.Xaml.Hosting (1)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (1)
29public IHttpHandler GetHandler(HttpContext context, string requestType,
7 references to GetHandler
System.Runtime.Remoting (1)
channels\http\httpremotinghandler.cs (1)
405return WebServicesFactory.GetHandler(context, verb, url, filePath);
System.Web (3)
HttpApplication.cs (3)
1326handler = factory.GetHandler(context, requestType, path.VirtualPathString, pathTranslated); 1392handler = factory.GetHandler(context, requestType, path.VirtualPathString, pathTranslated); 3332handler = factory.GetHandler(context, request.RequestType, request.FilePath, pathTranslated);
System.Web.Extensions (1)
Script\Services\ScriptHandlerFactory.cs (1)
82handler = factory.GetHandler(context, requestType, url, pathTranslated);
System.Xaml.Hosting (2)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (2)
271IHttpHandler handler = factory.GetHandler(context, requestType, url, pathTranslated); 299IHttpHandler handler = factory.GetHandler(context, requestType, url, pathTranslated);