System::Web::HttpUtility::UrlDecodeToBytes metodo

HttpUtility::UrlDecodeToBytes(const String&) method

Decodifica il frammento URI da una stringa di byte.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str)
ParametroTipoDescrizione
strconst String&Frammento URI codificato.

ReturnValue

Frammento URI decodificato.

Vedi anche

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

Decodifica frammento URI da stringa.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str, const System::SharedPtr<Text::Encoding> &e)
ParametroTipoDescrizione
strconst String&Frammento URI codificato.
econst System::SharedPtr<Text::Encoding>&Codifica da utilizzare.

ReturnValue

Frammento URI decodificato.

Vedi anche

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

Decodifica il frammento URI da un array di byte.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes)
ParametroTipoDescrizione
byteconst System::ArrayPtr<uint8_t>&Frammento URI codificato.

ReturnValue

Frammento URI decodificato.

Vedi anche

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

Decodifica il frammento URI da un array di byte.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes, int32_t offset, int32_t count)
ParametroTipoDescrizione
byteconst System::ArrayPtr<uint8_t>&Frammento URI codificato.
offsetint32_tOffset nell’array di byte fornito.
countint32_tNumero di byte da leggere.

ReturnValue

Frammento URI decodificato.

Vedi anche