WebInvokeAttribute.Method Proprietà

Definizione

Ottiene o imposta il metodo del protocollo (ad esempio HTTP) al quale risponde l'operazione del servizio.

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

Valore della proprietà

String

Il metodo del protocollo associato all'operazione.

Esempio

Nell'esempio seguente viene illustrato come impostare la proprietà 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

Commenti

Method assume il valore predefinito POST.

Si applica a