HttpServerUtilityWrapper.HtmlDecode メソッド

定義

HTML エンコード文字列をデコードします。

オーバーロード

名前 説明
HtmlDecode(String)

HTML でエンコードされた文字列をデコードし、デコードされた文字列を返します。

HtmlDecode(String, TextWriter)

HTML でエンコードされた文字列をデコードし、ストリームで結果を返します。

HtmlDecode(String)

HTML でエンコードされた文字列をデコードし、デコードされた文字列を返します。

public:
 override System::String ^ HtmlDecode(System::String ^ s);
public override string HtmlDecode(string s);
override this.HtmlDecode : string -> string
Public Overrides Function HtmlDecode (s As String) As String

パラメーター

s
String

デコードする HTML 文字列。

返品

デコードされたテキスト。

適用対象

HtmlDecode(String, TextWriter)

HTML でエンコードされた文字列をデコードし、ストリームで結果を返します。

public:
 override void HtmlDecode(System::String ^ s, System::IO::TextWriter ^ output);
public override void HtmlDecode(string s, System.IO.TextWriter output);
override this.HtmlDecode : string * System.IO.TextWriter -> unit
Public Overrides Sub HtmlDecode (s As String, output As TextWriter)

パラメーター

s
String

デコードする HTML 文字列。

output
TextWriter

デコードされた文字列を格納するストリーム。

注釈

output パラメーターは、HtmlDecode メソッドへの参照によって渡されます。 メソッドの完了後にハンドラーから出力を取得するには、 output オブジェクトのプロパティとメソッドを使用します。 例については、HtmlDecodeを参照してください。

適用対象