10 references to PathInfo
System.Runtime.Remoting (1)
channels\http\httpremotinghandler.cs (1)
347InternalRemotingServices.DebugOutChnl("PathInfo = " + request.PathInfo);
System.Web (1)
Abstractions\HttpRequestWrapper.cs (1)
203return _httpRequest.PathInfo;
System.Web.Extensions (8)
Handlers\ScriptModule.cs (1)
173string methodName = request.PathInfo.Substring(1);
Script\Services\RestHandler.cs (3)
29if (context.Request.PathInfo.Length < 2 || context.Request.PathInfo[0] != '/') { 35string methodName = context.Request.PathInfo.Substring(1);
Script\Services\RestHandlerFactory.cs (3)
20if (IsClientProxyRequest(context.Request.PathInfo)) { 35return IsRestMethodCall(context.Request) || IsClientProxyRequest(context.Request.PathInfo); 41!String.IsNullOrEmpty(request.PathInfo) &&
Script\Services\WebServiceClientProxyGenerator.cs (1)
51bool debug = RestHandlerFactory.IsClientProxyDebugRequest(context.Request.PathInfo);