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