HttpServerUtilityBase.UrlDecode 方法

定义

在派生类中重写时,对编码为仅包含在 URL 中有效的字符的字符串进行解码。

重载

UrlDecode(String)

在派生类中重写时,对 URL 编码的字符串进行解码,并返回已解码的字符串。

UrlDecode(String, TextWriter)

在派生类中重写时,对 URL 编码的字符串进行解码,并将得到的输出发送到流。

UrlDecode(String)

在派生类中重写时,对 URL 编码的字符串进行解码,并返回已解码的字符串。

public:
 virtual System::String ^ UrlDecode(System::String ^ s);
public virtual string UrlDecode (string s);
abstract member UrlDecode : string -> string
override this.UrlDecode : string -> string
Public Overridable Function UrlDecode (s As String) As String

参数

s
String

要解码的字符串。

返回

String

已解码的文本。

例外

适用于

UrlDecode(String, TextWriter)

在派生类中重写时,对 URL 编码的字符串进行解码,并将得到的输出发送到流。

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

参数

s
String

要解码的字符串。

output
TextWriter

包含已解码字符串的流。

例外

注解

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

适用于