HttpHandlerAction.Verb Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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à
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".