Compartilhar via


HttpHandlerAction.Verb Propriedade

Definição

Obtém ou define o verbo permitido pelo objeto 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

Valor da propriedade

String

O verbo permitido pelo objeto.

Atributos

Exemplos

O exemplo de código a seguir mostra como acessar a Verb propriedade.

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

Comentários

Essa Verb propriedade pode ser uma lista separada por vírgulas de verbos HTTP (por exemplo, "GET, PUT, POST").

Aplica-se a