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

适用于