WebGetAttribute.ResponseFormat 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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 열거형 값 중 하나입니다.
예제
다음 예제에서는 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
설명
이 속성은 서비스 작업에서 보낸 응답의 형식을 결정합니다. 가능한 두 값은 다음과 같습니다 Xml
Json
.