Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
 ResponseFormat Property
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
WebGetAttribute..::.ResponseFormat Property

Gets and sets the ResponseFormat property.

Namespace:  System.ServiceModel.Web
Assembly:  System.ServiceModel.Web (in System.ServiceModel.Web.dll)
Visual Basic (Declaration)
Public Property ResponseFormat As WebMessageFormat
Visual Basic (Usage)
Dim instance As WebGetAttribute
Dim value As WebMessageFormat

value = instance.ResponseFormat

instance.ResponseFormat = value
C#
public WebMessageFormat ResponseFormat { get; set; }
Visual C++
public:
property WebMessageFormat ResponseFormat {
    WebMessageFormat get ();
    void set (WebMessageFormat value);
}
JScript
public function get ResponseFormat () : WebMessageFormat
public function set ResponseFormat (value : WebMessageFormat)

Property Value

Type: System.ServiceModel.Web..::.WebMessageFormat
One of the WebMessageFormat enumeration values.

This property determines the format of responses sent from a service operation. The two possible values are Xml and Json.

The following example shows how to set the ResponseFormat property.

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

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement | Site Feedback
Page view tracker