次の方法で共有


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」を参照してください。

適用対象