HtmlTextWriter.Encoding プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HtmlTextWriter オブジェクトがページにコンテンツを書き込むために使用するエンコーディングを取得します。
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
プロパティ値
マークアップをページに書き込むときに使用される Encoding。
例
次のコード例は、プロパティを Encoding 使用して、カスタム コントロールがテキストを含むページにレンダリングするために使用するエンコードの種類を記述する方法を示しています。
// 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>"))
注釈
このプロパティは Encoding 、基本 TextWriter オブジェクトからその値を取得します。