HtmlTextWriter.Encoding Property

Definition

Gets the encoding that the HtmlTextWriter object uses to write content to the page.

C#
public override System.Text.Encoding Encoding { get; }

Property Value

The Encoding in which the markup is written to the page.

Examples

The following code example shows how to use the Encoding property to write the type of encoding that a custom control uses to render text to the page that contains it.

C#
// Get the value of the current markup writer's 
// Encoding property, convert it to a string, and 
// write it to the markup stream.
writer.Write("Encoding : " + writer.Encoding.ToString() + "<br>");

Remarks

The Encoding property obtains its value from the base TextWriter object.

Applies to

產品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also