Condividi tramite


HttpHandlerAction.Verb Proprietà

Definizione

Ottiene o imposta il verbo consentito dall'oggetto HttpHandlerAction.

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

Valore della proprietà

String

Verbo consentito dall'oggetto.

Attributi

Esempio

Nell'esempio di codice seguente viene illustrato come accedere alla proprietà Verb.

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

Commenti

Questa Verb proprietà può essere un elenco delimitato da virgole dei verbi HTTP, ad esempio "GET, PUT, POST".

Si applica a