WebGetAttribute.ResponseFormat 属性

定义

获取或设置 ResponseFormat 属性。

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

属性值

WebMessageFormat

WebMessageFormat 枚举值之一。

示例

下面的示例演示如何设置 ResponseFormat 属性。

[OperationContract]
[WebGet(ResponseFormat= WebMessageFormat.Json)]
long Mod(long x, long y);
<OperationContract()> _
<WebGet(ResponseFormat:=WebMessageFormat.Json)> _
Function Modulo(ByVal x As Long, ByVal y As Long) As Long

注解

此属性会确定从服务操作发出的响应的格式。 两个可能的值分别为 XmlJson

适用于