.NET Framework Class Library
WebGetAttribute..::.RequestFormat Property

Gets and sets the RequestFormat property.

Namespace:  System.ServiceModel.Web
Assembly:  System.ServiceModel.Web (in System.ServiceModel.Web.dll)
Syntax

Visual Basic (Declaration)
Public Property RequestFormat As WebMessageFormat
Visual Basic (Usage)
Dim instance As WebGetAttribute
Dim value As WebMessageFormat

value = instance.RequestFormat

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

Property Value

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

This property determines the format of requests made to a service operation. The two possible values are Xml and Json.

Examples

The following example shows how to set the RequestFormat property.

Visual Basic
<OperationContract()> _
<WebGet(UriTemplate:="Div?x={x}&y={y}", RequestFormat:=WebMessageFormat.Xml)> _
Function Divide(ByVal x As Long, ByVal y As Long) As Long
C#
[OperationContract]
[WebGet(UriTemplate = "Div?x={x}&y={y}", RequestFormat = WebMessageFormat.Xml)]
long Divide(long x, long y);
Platforms

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.
Version Information

.NET Framework

Supported in: 3.5
See Also

Reference

Tags :


Page view tracker