WebClientProtocol::RequestEncoding Property
The Encoding used to make the client request to the XML Web service.
Assembly: System.Web.Services (in System.Web.Services.dll)
public: [SettingsBindableAttribute(true)] property Encoding^ RequestEncoding { Encoding^ get(); void set(Encoding^ value); }
Property Value
Type: System.Text::Encoding^The character encoding for the client request. The default is null, which uses the default encoding for the underlying transport and protocol.
The RequestEncoding determines the encoding for the request message. The ContentType of the request will be annotated with the encoding value.
Classes deriving from WebClientProtocol support a particular protocol, such as SoapHttpClientProtocol does for SOAP, set this property to conform to encoding requirements for the specific protocol. For example, the SoapHttpClientProtocol sets the default encoding to UTF-8.
The following example is an ASP.NET Web Form, which calls an XML Web service named Math. Within the EnterBtn_Click function, the Web Form explicitly sets RequestEncoding to UTF-8.
Security Note
|
|---|
This example has a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview. |
Available since 1.1
