39 references to Path
System.Runtime.Remoting (1)
channels\http\httpremotinghandler.cs (1)
342
InternalRemotingServices.DebugOutChnl("Path = " + request.
Path
);
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HttpRequestTraceRecord.cs (1)
30
writer.WriteElementString("Path", this.request.
Path
);
System.Web (37)
Abstractions\HttpRequestWrapper.cs (1)
43
return _httpRequest.
Path
;
Configuration\AuthenticationConfig.cs (1)
75
String requestPath = context.Request.
Path
;
DefaultHttpHandler.cs (2)
96
throw new HttpException(405, SR.GetString(SR.Method_not_allowed, request.HttpMethod, request.
Path
));
101
throw new HttpException(403, SR.GetString(SR.Path_forbidden, request.
Path
));
Handlers\AssemblyResourceLoader.cs (1)
472
string requestPath = context.Request.
Path
;
HttpApplication.cs (2)
3317
configType = wr.ReMapHandlerAndGetHandlerTypeString(context, request.
Path
, out handlerExists);
3536
error.SetFormatter(new PageForbiddenErrorFormatter(context.Request.
Path
, SR.GetString(SR.Handler_access_denied)));
HttpContext.cs (1)
495
string path = request.
Path
;
HttpDebugHandler.cs (3)
153
context.Response.Write(SR.GetString(SR.Debugging_forbidden, context.Request.
Path
));
191
context.Response.Write(SR.GetString(SR.Debug_Access_Denied, context.Request.
Path
));
223
context.Response.Write(SR.GetString(SR.Debug_Access_Denied, context.Request.
Path
));
HTTPNotFoundHandler.cs (3)
32
SR.GetString(SR.Path_not_found, context.Request.
Path
));
59
SR.GetString(SR.Path_forbidden, context.Request.
Path
));
116
SR.GetString(SR.Method_for_path_not_implemented, context.Request.HttpMethod, context.Request.
Path
));
HttpRequest.cs (11)
521
value = this.
Path
;
1442
return (!String.IsNullOrEmpty(qs)) ? (
Path
+ "?" + qs) :
Path
;
1542
string path =
Path
;
1550
_filePath = VirtualPath.CreateAbsolute(
Path
.Substring(0, filePathLen));
1893
string u = _wr.GetProtocol() + "://" + serverAndPort +
Path
+ q;
1905
return _wr.GetProtocol() + "://" + serverName +
Path
+ q;
1908
return _wr.GetProtocol() + "://" + serverName + ":" + _wr.GetLocalPortAsString() +
Path
+ q;
1924
_url = BuildUrl(() =>
Path
);
2616
string requestUrl =
Path
;
2916
w.Write(this.HttpMethod + " " + this.
Path
);
HttpResponse.cs (4)
958
_virtualPathDependencyList.AddDependencies(virtualPaths, "virtualPaths", false, Request.
Path
);
1266
errorFormatter = new PageNotFoundErrorFormatter(Request.
Path
);
1268
errorFormatter = new PageForbiddenErrorFormatter(Request.
Path
);
2496
url = url + "?" + qsErrorMark + "=" + HttpEncoderUtility.UrlEncodeSpaces(Request.
Path
);
HttpServerVarsCollection.cs (1)
130
return _request.
Path
;
Management\WebEvents.cs (1)
1975
_requestPath = request.
Path
;
OutputCacheModule.cs (1)
316
return CreateOutputCachedItemKey(context.Request.
Path
, context.Request.HttpVerb, context, cachedVary);
SiteMapProvider.cs (2)
157
result = FindSiteMapNode(context.Request.
Path
+ "?" + qs);
163
result = FindSiteMapNode(context.Request.
Path
);
State\SessionIDManager.cs (1)
366
string path = request.
Path
;
StaticFileHandler.cs (1)
497
virtualPathWithPathInfo = request.
Path
;
UrlMappingsModule.cs (1)
36
string path = request.
Path
;