Aracılığıyla paylaş


WebInvokeAttribute.Method Özellik

Tanım

Hizmet işleminin yanıt verdiği protokolü (örneğin HTTP) alır veya ayarlar.

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

Özellik Değeri

String

İşlemle ilişkili protokol yöntemi.

Örnekler

Aşağıdaki örnekte özelliğin nasıl ayarlanacağı gösterilmektedir 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

Açıklamalar

Method varsayılan olarak POST olarak ayarlanır.

Şunlara uygulanır