9 references to HttpMethod
System (2)
net\System\Net\_ListenerResponseStream.cs (1)
397if ((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)
282if(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)
782get { return listenerContext.Request.HttpMethod; } 961requestProperty.Method = this.listenerHttpContext.listenerContext.Request.HttpMethod; 978message.Method = new HttpMethod(this.listenerHttpContext.listenerContext.Request.HttpMethod);
System\ServiceModel\Channels\SharedHttpTransportManager.cs (4)
303listenerContext.Request.HttpMethod, 428if (string.Compare(listenerContext.Request.HttpMethod, "POST", StringComparison.OrdinalIgnoreCase) != 0) 642if (base.TryLookupUri(request.Url, request.HttpMethod, 672if (base.TryLookupUri(request.Url, request.HttpMethod,