1 instantiation of HttpHandlerAction
System.Web (1)
Configuration\HttpHandlerActionCollection.cs (1)
84return new HttpHandlerAction();
21 references to HttpHandlerAction
System.Web (21)
Configuration\HandlerFactoryCache.cs (2)
44internal HandlerFactoryCache(HttpHandlerAction mapping) { 75internal Type GetHandlerType( HttpHandlerAction handlerAction ) {
Configuration\HandlerMappingMemo.cs (3)
18internal HandlerMappingMemo(HttpHandlerAction mapping, String verb, VirtualPath path) { 24private HttpHandlerAction _mapping; 32internal /*public*/ HttpHandlerAction Mapping {
Configuration\HttpHandlerActionCollection.cs (7)
20[ConfigurationCollection(typeof(HttpHandlerAction), 51public HttpHandlerAction this[int index] { 53return (HttpHandlerAction)BaseGet(index); 63public int IndexOf(HttpHandlerAction action) { 67public void Add(HttpHandlerAction httpHandlerAction) { 71public void Remove(HttpHandlerAction action) { 88return ((HttpHandlerAction)element).Key;
Configuration\HttpHandlersSection.cs (4)
53foreach (HttpHandlerAction ha in Handlers) { 65internal HttpHandlerAction FindMapping(String verb, VirtualPath path) { 69HttpHandlerAction m = (HttpHandlerAction)Handlers[i];
Handlers\AssemblyResourceLoader.cs (1)
106HttpHandlerAction httpHandler = RuntimeConfig.GetConfig(VirtualPath.Create(webResourcePath)).HttpHandlers.FindMapping("GET", VirtualPath.Create(_webResourceUrl));
HttpApplication.cs (4)
1244private HttpHandlerAction GetHandlerMapping(HttpContext context, String requestType, VirtualPath path, bool useAppConfig) { 1247HttpHandlerAction mapping = null; 1367HttpHandlerAction mapping = GetHandlerMapping(context, requestType, path, useAppConfig); 2677private IHttpHandlerFactory GetFactory(HttpHandlerAction mapping) {