共用方式為


WebInvokeAttribute.Method 屬性

定義

取得或設定服務作業回應的通訊協定 (例如 HTTP) 方法。

public:
 property System::String ^ Method { System::String ^ get(); void set(System::String ^ value); };
public string Method { get; set; }
member this.Method : string with get, set
Public Property Method As String

屬性值

String

與作業關聯的通訊協定方法。

範例

下列範例會示範如何設定 Method 屬性。

[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "Mod?x={x}&y={y}")]
long Mod(long x, long y);
 <OperationContract()> _
<WebInvoke(Method:="POST", UriTemplate:="Mod?x={x}&y={y}")> _
Function Modulo(ByVal x As Long, ByVal y As Long) As Long

備註

Method 預設為 POST。

適用於