System::Web::HttpUtility::UrlDecodeToBytes Methode

HttpUtility::UrlDecodeToBytes(const String&) method

Dekodiert URI-Fragment aus einem Byte-String.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str)
ParameterTypBeschreibung
strconst String&Kodiertes URI-Fragment.

ReturnValue

Dekodiertes URI-Fragment.

Siehe auch

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

Dekodiert URI‑Fragment aus einem String.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str, const System::SharedPtr<Text::Encoding> &e)
ParameterTypBeschreibung
strconst String&Kodiertes URI-Fragment.
econst System::SharedPtr<Text::Encoding>&Kodierung zu verwenden.

ReturnValue

Dekodiertes URI-Fragment.

Siehe auch

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

Dekodiert URI-Fragment aus einem Byte-Array.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes)
ParameterTypBeschreibung
Bytesconst System::ArrayPtr<uint8_t>&Kodiertes URI-Fragment.

ReturnValue

Dekodiertes URI-Fragment.

Siehe auch

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

Dekodiert URI-Fragment aus einem Byte-Array.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes, int32_t offset, int32_t count)
ParameterTypBeschreibung
Bytesconst System::ArrayPtr<uint8_t>&Kodiertes URI-Fragment.
Offsetint32_tVersatz im angegebenen Byte-Array.
countint32_tAnzahl der zu lesenden Bytes.

ReturnValue

Dekodiertes URI-Fragment.

Siehe auch