HttpBinding.Verb 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出是否會用 "GET" 或 "POST" 方法提出 HTTP 要求。
public:
property System::String ^ Verb { System::String ^ get(); void set(System::String ^ value); };
public string Verb { get; set; }
member this.Verb : string with get, set
Public Property Verb As String
屬性值
字串,包含兩個可能值 "GET" 或 "POST" 中的一個。 預設值為空字串 ("")。
備註
下列範例會建立新的 HttpBinding
,並設定其 Verb
屬性。
WebServices_HttpBinding#2