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