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