HtmlTextWriter.Encoding プロパティ

定義

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

次のコード例は、プロパティを 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 オブジェクトからその値を取得します。

適用対象

こちらもご覧ください