HttpServerUtilityBase.HtmlDecode 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在派生类中重写时,解码 HTML 编码的字符串。
重载
| 名称 | 说明 |
|---|---|
| HtmlDecode(String) |
在派生类中重写时,解码 HTML 编码的字符串并返回解码的字符串。 |
| HtmlDecode(String, TextWriter) |
在派生类中重写时,解码 HTML 编码的字符串,并在流中返回结果。 |
HtmlDecode(String)
在派生类中重写时,解码 HTML 编码的字符串并返回解码的字符串。
public:
virtual System::String ^ HtmlDecode(System::String ^ s);
public virtual string HtmlDecode(string s);
abstract member HtmlDecode : string -> string
override this.HtmlDecode : string -> string
Public Overridable Function HtmlDecode (s As String) As String
参数
- s
- String
要解码的 HTML 字符串。
返回
解码的文本。
例外
适用于
HtmlDecode(String, TextWriter)
在派生类中重写时,解码 HTML 编码的字符串,并在流中返回结果。
public:
virtual void HtmlDecode(System::String ^ s, System::IO::TextWriter ^ output);
public virtual void HtmlDecode(string s, System.IO.TextWriter output);
abstract member HtmlDecode : string * System.IO.TextWriter -> unit
override this.HtmlDecode : string * System.IO.TextWriter -> unit
Public Overridable Sub HtmlDecode (s As String, output As TextWriter)
参数
- s
- String
要解码的 HTML 字符串。
- output
- TextWriter
要包含解码字符串的流。
例外
注解
参数 output 通过对方法的 HtmlDecode 引用传递。 若要在方法完成后从处理程序检索输出,请使用对象的属性和方法 output 。 有关示例,请参阅 HtmlDecode。