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