HtmlTextWriter.Encoding-Eigenschaft
Ruft die Codierung ab, die das HtmlTextWriter-Objekt beim Schreiben von Inhalt in die Seite verwendet.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Syntax
'Declaration
Public Overrides ReadOnly Property Encoding As Encoding
'Usage
Dim instance As HtmlTextWriter
Dim value As Encoding
value = instance.Encoding
public override Encoding Encoding { get; }
public:
virtual property Encoding^ Encoding {
Encoding^ get () override;
}
/** @property */
public Encoding get_Encoding ()
public override function get Encoding () : Encoding
Eigenschaftenwert
Die Encoding, mit der das Markup in die Seite geschrieben wird.
Hinweise
Die Encoding-Eigenschaft ruft ihren Wert aus dem TextWriter-Basisobjekt ab.
Beispiel
Im folgenden Codebeispiel wird die Verwendung der Encoding-Eigenschaft zum Schreiben des Codierungstyps, den ein benutzerdefiniertes Steuerelement zum Rendern von Text auf der enthaltenden Seite verwendet, veranschaulicht.
' 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>"))
// 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 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.get_Encoding().ToString()
+ "<br>");
Plattformen
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
HtmlTextWriter-Klasse
HtmlTextWriter-Member
System.Web.UI-Namespace
TextWriter
Encoding