HttpServerUtilityWrapper.UrlDecode 方法

定义

对编码为仅包含 URL 中有效字符的字符串进行解码。

重载

名称 说明
UrlDecode(String)

解码 URL 编码的字符串并返回解码的字符串。

UrlDecode(String, TextWriter)

解码 URL 编码的字符串,并将生成的输出发送到流。

UrlDecode(String)

解码 URL 编码的字符串并返回解码的字符串。

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

参数

s
String

要解码的字符串。

返回

解码的文本。

适用于

UrlDecode(String, TextWriter)

解码 URL 编码的字符串,并将生成的输出发送到流。

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

参数

s
String

要解码的 HTML 字符串。

output
TextWriter

要包含解码字符串的流。

注解

参数 output 通过对方法的 UrlDecode 引用传递。 若要在方法完成后从处理程序检索输出,请使用对象的属性和方法 output 。 有关示例,请参阅 HtmlDecode

适用于