WebInvokeAttribute.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]
[WebInvoke(UriTemplate = "Div?x={x}&y={y}", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Xml, ResponseFormat=WebMessageFormat.Xml)]
long Divide(long x, long y);
<OperationContract()> _
<WebInvoke(UriTemplate:="Div?x={x}&y={y}", BodyStyle:=WebMessageBodyStyle.Bare, RequestFormat:=WebMessageFormat.Xml, ResponseFormat:=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. Możliwe wartości to Xml i Json.

Dotyczy