System::Web::HttpUtility::UrlDecodeToBytes méthode

HttpUtility::UrlDecodeToBytes(const String&) method

Décode le fragment URI à partir d’une chaîne d’octets.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str)
ParamètreTypeDescription
strconst String&Fragment URI encodé.

ReturnValue

Fragment d’URI décodé.

Voir aussi

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

Décode le fragment URI à partir d’une chaîne.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str, const System::SharedPtr<Text::Encoding> &e)
ParamètreTypeDescription
strconst String&Fragment URI encodé.
econst System::SharedPtr<Text::Encoding>&Encodage à utiliser.

ReturnValue

Fragment d’URI décodé.

Voir aussi

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

Décode le fragment URI à partir d’un tableau d’octets.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes)
ParamètreTypeDescription
octetsconst System::ArrayPtr<uint8_t>&Fragment URI encodé.

ReturnValue

Fragment d’URI décodé.

Voir aussi

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

Décode le fragment URI à partir d’un tableau d’octets.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes, int32_t offset, int32_t count)
ParamètreTypeDescription
octetsconst System::ArrayPtr<uint8_t>&Fragment URI encodé.
décalageint32_tDécalage dans le tableau d’octets fourni.
countint32_tNombre d’octets à lire.

ReturnValue

Fragment d’URI décodé.

Voir aussi