25 references to HttpMethod
System.Runtime.Remoting (4)
channels\http\httpremotinghandler.cs (4)
227if (String.Compare(context.Request.HttpMethod, "GET", StringComparison.OrdinalIgnoreCase) != 0) { 345InternalRemotingServices.DebugOutChnl("HttpMethod = " + request.HttpMethod); 399bool bVerbIsGET = (String.Compare(httpRequest.HttpMethod, "GET", StringComparison.OrdinalIgnoreCase) == 0); 552requestHeaders["__RequestVerb"] = httpRequest.HttpMethod;
System.ServiceModel.Activation (2)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (2)
147string method = context.Request.HttpMethod ?? ""; 935return this.context.Request.HttpMethod;
System.Web (12)
Abstractions\HttpRequestWrapper.cs (1)
167return _httpRequest.HttpMethod;
DefaultHttpHandler.cs (1)
96throw new HttpException(405, SR.GetString(SR.Method_not_allowed, request.HttpMethod, request.Path));
HTTPNotFoundHandler.cs (2)
88SR.GetString(SR.Path_forbidden, context.Request.HttpMethod)); 116SR.GetString(SR.Method_for_path_not_implemented, context.Request.HttpMethod, context.Request.Path));
HttpRequest.cs (4)
613AddServerVariableToCollection("REQUEST_METHOD", this.HttpMethod); 1185string method = HttpMethod; 1242return(_requestType != null) ? _requestType : this.HttpMethod; 2916w.Write(this.HttpMethod + " " + this.Path);
HttpServerVarsCollection.cs (1)
137return _request.HttpMethod;
Security\FileAuthorizationModule.cs (1)
167|| context.Request.HttpMethod == "OPTIONS")
Security\PassportIdentity.cs (1)
89String strRequestLine = context.Request.HttpMethod + " " +
UI\TraceContext.cs (1)
775row[SR.Trace_Request_Type] = _context.Request.HttpMethod;
System.Web.DataVisualization (1)
WebForm\General\ChartHttpHandler.cs (1)
2008Verb = HttpContext.Current.Request.HttpMethod;
System.Web.Extensions (2)
Script\Services\RestHandler.cs (2)
114if (context.Request.HttpMethod == "GET") { 123else if (context.Request.HttpMethod == "POST") {
System.Web.Mobile (4)
UI\MobileControls\Adapters\ChtmlPageAdapter.cs (1)
141else if (String.Compare(request.HttpMethod, "POST", StringComparison.OrdinalIgnoreCase) == 0)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicPageAdapter.cs (1)
290else if (String.Compare(request.HttpMethod, "POST", StringComparison.OrdinalIgnoreCase) == 0) {
UI\MobileControls\MobilePage.cs (2)
626if (Request.HttpMethod != "POST") 1271if (String.Compare(Request.HttpMethod, "GET", StringComparison.OrdinalIgnoreCase) == 0)