HttpHandlerAction.Verb Property

Definition

Gets or sets the verb allowed by the HttpHandlerAction object.

public:
 property System::String ^ Verb { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("verb", IsKey=true, IsRequired=true)]
public string Verb { get; set; }
[<System.Configuration.ConfigurationProperty("verb", IsKey=true, IsRequired=true)>]
member this.Verb : string with get, set
Public Property Verb As String

Property Value

The verb allowed by the object.

Attributes

Examples

The following code example shows how to access the Verb property.

// Change the Verb for the HttpHandlerAction.
httpHandler.Verb = "POST";
' Change the Verb for the HttpHandlerAction.
httpHandler.Verb = "POST"

Remarks

This Verb property can be a comma-separated list of HTTP verbs (for example, "GET, PUT, POST").

Applies to