23 references to Request
System.Web.Services (23)
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (4)
241string escapedUri = RuntimeUtils.EscapeUri(Request.Url); 268string id = Request.QueryString["schema"]; 279id = Request.QueryString["wsdl"]; 299string queryString = Request.QueryString[null];
System\Web\Services\Protocols\DocumentationServerProtocol.cs (1)
122string escapedUri = RuntimeUtils.EscapeUri(Request.Url);
System\Web\Services\Protocols\HttpServerProtocol.cs (3)
142string methodName = Request.PathInfo.Substring(1); // Skip leading '/' 203object[] parameters = reader.Read(Request); 209throw new InvalidOperationException(Res.GetString(Res.WebInvalidRequestFormatDetails, Request.ContentType));
System\Web\Services\Protocols\RemoteDebugger.cs (1)
72stringBuffer = protocol.Request.Headers[debuggerHeader];
System\Web\Services\Protocols\ServerProtocol.cs (2)
210string url = excludeSchemeHostPort ? Request.Url.AbsolutePath : Request.Url.GetLeftPart(UriPartial.Path);
System\Web\Services\Protocols\Soap11ServerProtocol.cs (2)
48string methodUriString = ServerProtocol.Request.Headers[Soap.Action]; 74if (Tracing.On) Tracing.Enter("RouteRequest", caller, new TraceMethod(ServerType, "GetMethod", methodKey), Tracing.Details(ServerProtocol.Request));
System\Web\Services\Protocols\Soap12ServerProtocol.cs (3)
45string action = ContentType.GetAction(ServerProtocol.Request.ContentType); 54if (Tracing.On) Tracing.Enter("RouteRequest", caller, new TraceMethod(ServerType, "GetMethod", action), Tracing.Details(ServerProtocol.Request)); 69if (Tracing.On) Tracing.Enter("RouteRequest", caller, new TraceMethod(ServerType, "GetMethod", requestElement), Tracing.Details(ServerProtocol.Request));
System\Web\Services\Protocols\SoapServerMessage.cs (1)
61get { return RuntimeUtils.EscapeUri(protocol.Request.Url); }
System\Web\Services\Protocols\SoapServerProtocol.cs (6)
334message.SetStream(Request.InputStream); 345message.ContentType = Request.ContentType; 346message.ContentEncoding = Request.Headers[ContentType.ContentEncoding]; 437if (Request.Headers[Soap.Action] == null || ContentType.MatchesBase(Request.ContentType, ContentType.ApplicationSoap)) 867XmlReader reader = GetReaderForMessage(Message, RequestResponseUtils.GetBufferSize(Request.ContentLength));