18 references to POST
System.Web (18)
DefaultHttpHandler.cs (1)
95
if (request.HttpVerb == HttpVerb.
POST
) {
HttpRequest.cs (2)
1199
_httpVerb = HttpVerb.
POST
;
2860
case HttpVerb.
POST
:
HttpResponse.cs (1)
1030
path, HttpVerb.
POST
, null, null);
OutputCacheModule.cs (7)
145
if (verb == HttpVerb.
POST
) {
191
if (verb == HttpVerb.
POST
) {
264
if ( verb == HttpVerb.
POST
&&
574
case HttpVerb.
POST
:
703
if (request.HttpVerb == HttpVerb.
POST
) {
1062
if (request.HttpVerb != HttpVerb.GET && request.HttpVerb != HttpVerb.
POST
) {
1133
if (!cache.VaryByParams.AcceptsParams() && (request.HttpVerb == HttpVerb.
POST
|| request.HasQueryString)) {
Security\FileAuthorizationModule.cs (1)
165
|| verb == HttpVerb.
POST
UI\Page.cs (4)
1880
if (_request.HttpVerb == HttpVerb.
POST
) {
1992
return _request.HttpVerb == HttpVerb.
POST
? _request.Unvalidated.Form : _request.Unvalidated.QueryString;
4695
if ((callbackControlId != null) && (_request.HttpVerb == HttpVerb.
POST
)) {
4991
if ((callbackControlId != null) && (_request.HttpVerb == HttpVerb.
POST
)) {
UI\PartialCachingControl.cs (1)
470
if (request != null && request.HttpVerb == HttpVerb.
POST
) {
UI\WebParts\BlobPersonalizationState.cs (1)
47
_isPostRequest = (webPartManager.Page.Request.HttpVerb == HttpVerb.
POST
);