Udostępnij za pośrednictwem


WebGetAttribute.RequestFormat Właściwość

Definicja

Pobiera lub ustawia RequestFormat właściwość .

public:
 property System::ServiceModel::Web::WebMessageFormat RequestFormat { System::ServiceModel::Web::WebMessageFormat get(); void set(System::ServiceModel::Web::WebMessageFormat value); };
public System.ServiceModel.Web.WebMessageFormat RequestFormat { get; set; }
member this.RequestFormat : System.ServiceModel.Web.WebMessageFormat with get, set
Public Property RequestFormat As WebMessageFormat

Wartość właściwości

WebMessageFormat Jedna z wartości wyliczenia.

Przykłady

W poniższym przykładzie pokazano, jak ustawić RequestFormat właściwość .

[OperationContract]
[WebGet(UriTemplate = "Div?x={x}&y={y}", RequestFormat = WebMessageFormat.Xml)]
long Divide(long x, long y);
<OperationContract()> _
<WebGet(UriTemplate:="Div?x={x}&y={y}", RequestFormat:=WebMessageFormat.Xml)> _
Function Divide(ByVal x As Long, ByVal y As Long) As Long

Uwagi

Ta właściwość określa format żądań wysyłanych do operacji usługi. Dwie możliwe wartości to Xml i Json.

Dotyczy