Freigeben über


HttpRequestExtensions.GetHttpMethodOverride Method

Retrieves the HTTP data-transfer method override that was used by the client.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetHttpMethodOverride ( _
    request As HttpRequestBase _
) As String
public static string GetHttpMethodOverride(
    this HttpRequestBase request
)
[ExtensionAttribute]
public:
static String^ GetHttpMethodOverride(
    HttpRequestBase^ request
)

Parameters

  • request
    Type: System.Web.HttpRequestBase
    An object that contains the HTTP values that were sent by a client during a Web request.

Return Value

Type: System.String
The HTTP data-transfer method override that was used by the client.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type HttpRequestBase. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

Exception Condition
ArgumentNullException

The request parameter is null reference (Nothing in Visual Basic).

NotImplementedException

The HTTP data-transfer method override was not implemented.

See Also

Reference

HttpRequestExtensions Class

System.Web.Mvc Namespace