UrlDecodeToBytes()

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)

Arguments

ParameterTypeDescription
bytesconst System::ArrayPtr<uint8_t>&Encoded URI fragment.

Return Value

Decoded URI fragment.

HttpUtility::UrlDecodeToBytes(const String&) method

Decodes URI fragment from bytes string.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str)

Arguments

ParameterTypeDescription
strconst String&Encoded URI fragment.

Return Value

Decoded URI fragment.

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)

Arguments

ParameterTypeDescription
strconst String&Encoded URI fragment.
econst System::SharedPtr<Text::Encoding>&Encoding to use.

Return Value

Decoded URI fragment.

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)

Arguments

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

Return Value

Decoded URI fragment.

See Also