HtmlTextWriter.Encoding Vlastnost

Definice

Získá kódování, které HtmlTextWriter objekt používá k zápisu obsahu na stránku.

public:
 virtual property System::Text::Encoding ^ Encoding { System::Text::Encoding ^ get(); };
public override System.Text.Encoding Encoding { get; }
member this.Encoding : System.Text.Encoding
Public Overrides ReadOnly Property Encoding As Encoding

Hodnota vlastnosti

Encoding

Kód Encoding , ve kterém se kód zapisuje na stránku.

Příklady

Následující příklad kódu ukazuje, jak použít vlastnost k zápisu typu kódování, které vlastní Encoding ovládací prvek používá k vykreslení textu na stránku, která ji obsahuje.

// 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( String::Concat( "Encoding : ", writer->Encoding, "<br>" ) );
// 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>");
' Get the value of the current markup writer's 
' Encoding property, convert it to a string, and 
' write it to the HtmlTextWriter stream.
writer.Write(("Encoding : " + writer.Encoding.ToString() & "<br>"))

Poznámky

Vlastnost Encoding získá svou hodnotu ze základního TextWriter objektu.

Platí pro

Viz také