9 references to HttpMethod
System (2)
net\System\Net\_ListenerResponseStream.cs (1)
397
if ((m_HttpContext.Response.BoundaryType==BoundaryType.Chunked || m_HttpContext.Response.BoundaryType==BoundaryType.None) && (String.Compare(m_HttpContext.Request.
HttpMethod
, "HEAD", StringComparison.OrdinalIgnoreCase)!=0)) {
net\System\Net\HttpListenerRequest.cs (1)
282
if(Logging.On)Logging.PrintInfo(Logging.HttpListener, this, ".ctor", "httpContext#"+ ValidationHelper.HashString(httpContext)+ " RequestUri:" + ValidationHelper.ToString(RequestUri) + " Content-Length:" + ValidationHelper.ToString(ContentLength64) + " HTTP Method:" + ValidationHelper.ToString(
HttpMethod
));
System.ServiceModel (7)
System\ServiceModel\Channels\HttpRequestContext.cs (3)
782
get { return listenerContext.Request.
HttpMethod
; }
961
requestProperty.Method = this.listenerHttpContext.listenerContext.Request.
HttpMethod
;
978
message.Method = new HttpMethod(this.listenerHttpContext.listenerContext.Request.
HttpMethod
);
System\ServiceModel\Channels\SharedHttpTransportManager.cs (4)
303
listenerContext.Request.
HttpMethod
,
428
if (string.Compare(listenerContext.Request.
HttpMethod
, "POST", StringComparison.OrdinalIgnoreCase) != 0)
642
if (base.TryLookupUri(request.Url, request.
HttpMethod
,
672
if (base.TryLookupUri(request.Url, request.
HttpMethod
,