Bagikan melalui


WebInvokeAttribute.RequestFormat Properti

Definisi

Mendapatkan atau mengatur RequestFormat properti.

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

Nilai Properti

Salah WebMessageFormat satu nilai enumerasi.

Contoh

Contoh berikut menunjukkan cara mengatur RequestFormat properti.

[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

Keterangan

Properti ini menentukan format permintaan yang dibuat untuk operasi layanan. Nilai yang mungkin adalah Xml dan Json.

Berlaku untuk