Decodes a string which has been encoded using EncodeString(String). The string is expected to have a character encoding of UTF-8.

Namespace:  Endeca.Web.Url.Seo
Assembly:  Endeca.Web.Url.Seo (in Endeca.Web.Url.Seo.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public string DecodeString(
	string stringToDecode
)
Visual Basic (Declaration)
Public Function DecodeString ( _
	stringToDecode As String _
) As String
Visual C++
public:
virtual String^ DecodeString(
	String^ stringToDecode
) sealed

Parameters

stringToDecode
Type: System..::.String
The string to decode.

Return Value

Decoded string.

Implements

IUrlEncoder..::.DecodeString(String)

Remarks

By default, this just calls UrlDecode(String), where the default character encoding is UTF-8.

See Also