UrlDecode()

HttpUtility::UrlDecode(String) method

Decodes URI fragment from string.

static String System::Web::HttpUtility::UrlDecode(String str)

Arguments

ParameterTypeDescription
strStringEncoded URI fragment.

Return Value

Decoded URI fragment.

HttpUtility::UrlDecode(String, System::SharedPtr<Text::Encoding>) method

Decodes URI fragment from string.

static String System::Web::HttpUtility::UrlDecode(String str, System::SharedPtr<Text::Encoding> e)

Arguments

ParameterTypeDescription
strStringEncoded URI fragment.
eSystem::SharedPtr<Text::Encoding>Encoding to use.

Return Value

Decoded URI fragment.

HttpUtility::UrlDecode(const System::ArrayPtr<uint8_t>&, const System::SharedPtr<Text::Encoding>&) method

Decodes URI fragment from bytes array.

static String System::Web::HttpUtility::UrlDecode(const System::ArrayPtr<uint8_t> &bytes, const System::SharedPtr<Text::Encoding> &e)

Arguments

ParameterTypeDescription
bytesconst System::ArrayPtr<uint8_t>&Encoded URI fragment.
econst System::SharedPtr<Text::Encoding>&Encoding to use.

Return Value

Decoded URI fragment.

HttpUtility::UrlDecode(const System::ArrayPtr<uint8_t>&, int32_t, int32_t, const System::SharedPtr<Text::Encoding>&) method

Decodes URI fragment from bytes array.

static String System::Web::HttpUtility::UrlDecode(const System::ArrayPtr<uint8_t> &bytes, int32_t offset, int32_t count, const System::SharedPtr<Text::Encoding> &e)

Arguments

ParameterTypeDescription
bytesconst System::ArrayPtr<uint8_t>&Encoded URI fragment.
offsetint32_tOffset in the given byte array.
countint32_tNumber of bytes to read from.
econst System::SharedPtr<Text::Encoding>&Encoding to use.

Return Value

Decoded URI fragment.

See Also