HtmlHelper.HttpMethodOverride Method (HttpVerbs)

Returns a hidden input element that identifies the override method for the specified verb that represents the HTTP data-transfer method used by the client.

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

'Declaration
Public Function HttpMethodOverride ( _
	httpVerb As HttpVerbs _
) As MvcHtmlString
'Usage
Dim instance As HtmlHelper 
Dim httpVerb As HttpVerbs 
Dim returnValue As MvcHtmlString 

returnValue = instance.HttpMethodOverride(httpVerb)

Parameters

httpVerb
Type: System.Web.Mvc.HttpVerbs
The verb that represents the HTTP data-transfer method used by the client.

Return Value

Type: System.Web.Mvc.MvcHtmlString
The override method that uses the verb that represents the HTTP data-transfer method used by the client.

ExceptionCondition
ArgumentNullException

The httpVerb parameter is not "PUT", "DELETE", or "HEAD".

Show: