Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpResponse::ContentEncoding Property

 

Gets or sets the HTTP character set of the output stream.

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

public:
property Encoding^ ContentEncoding {
	Encoding^ get();
	void set(Encoding^ value);
}

Property Value

Type: System.Text::Encoding^

A Encoding object that contains information about the character set of the current response.

Exception Condition
ArgumentNullException

Attempted to set ContentEncoding to null.

Default ContentEncoding can be specified in an ASP.NET configuration file in the globalization Element (ASP.NET Settings Schema) section. If ContentEncoding is specified by the client, the default configuration settings are overridden.

The following example writes a human-readable description of the character set encoding to the output stream.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft