System::Web::HttpUtility::UrlDecodeToBytes method

HttpUtility::UrlDecodeToBytes(const String&) method

Decodes URI fragment from bytes string.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str)
ParameterTypeDescription
strconst String&Encoded URI fragment.

ReturnValue

Decoded URI fragment.

See Also

HttpUtility::UrlDecodeToBytes(const String&, const System::SharedPtr<Text::Encoding>&) method

Decodes URI fragment from string.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str, const System::SharedPtr<Text::Encoding> &e)
ParameterTypeDescription
strconst String&Encoded URI fragment.
econst System::SharedPtr<Text::Encoding>&Encoding to use.

ReturnValue

Decoded URI fragment.

See Also

HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t>&) method

Decodes URI fragment from bytes array.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes)
ParameterTypeDescription
bytesconst System::ArrayPtr<uint8_t>&Encoded URI fragment.

ReturnValue

Decoded URI fragment.

See Also

HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t>&, int32_t, int32_t) method

Decodes URI fragment from bytes array.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes, int32_t offset, int32_t count)
ParameterTypeDescription
bytesconst System::ArrayPtr<uint8_t>&Encoded URI fragment.
offsetint32_tOffset in the given byte array.
countint32_tNumber of bytes to read from.

ReturnValue

Decoded URI fragment.

See Also