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

디코딩할 문자열입니다.

반환

디코딩된 텍스트입니다.

예외

적용 대상

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를 참조하세요.

적용 대상