HtmlTextWriter.Encoding Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient l'encodage utilisé par l'objet HtmlTextWriter pour écrire le contenu sur la page.
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
Valeur de propriété
Encoding dans lequel le balisage est écrit sur la page.
Exemples
L’exemple de code suivant montre comment utiliser la Encoding propriété pour écrire le type d’encodage qu’un contrôle personnalisé utilise pour restituer du texte à la page qui le contient.
// 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>"))
Remarques
La Encoding propriété obtient sa valeur à partir de l’objet de base TextWriter .