HttpHandlerAction.Verb 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 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
属性值
该对象所允许的谓词。
- 属性
示例
下面的代码示例演示如何访问 Verb 属性。
// Change the Verb for the HttpHandlerAction.
httpHandler.Verb = "POST";
' Change the Verb for the HttpHandlerAction.
httpHandler.Verb = "POST"
注解
此属性 Verb 可以是 HTTP 谓词的逗号分隔列表 (,例如“GET、PUT、POST”) 。