System::Web::HttpUtility::UrlDecodeToBytes método

HttpUtility::UrlDecodeToBytes(const String&) method

Decodifica fragmento URI desde cadena de bytes.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str)
ParámetroTipoDescripción
strconst String&Fragmento URI codificado.

ReturnValue

Fragmento URI decodificado.

Ver también

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

Decodifica fragmento URI desde cadena.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str, const System::SharedPtr<Text::Encoding> &e)
ParámetroTipoDescripción
strconst String&Fragmento URI codificado.
econst System::SharedPtr<Text::Encoding>&Codificación a usar.

ReturnValue

Fragmento URI decodificado.

Ver también

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

Decodifica fragmento URI desde matriz de bytes.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes)
ParámetroTipoDescripción
bytesconst System::ArrayPtr<uint8_t>&Fragmento URI codificado.

ReturnValue

Fragmento URI decodificado.

Ver también

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

Decodifica fragmento URI desde matriz de bytes.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes, int32_t offset, int32_t count)
ParámetroTipoDescripción
bytesconst System::ArrayPtr<uint8_t>&Fragmento URI codificado.
desplazamientoint32_tDesplazamiento en el arreglo de bytes dado.
countint32_tNúmero de bytes a leer.

ReturnValue

Fragmento URI decodificado.

Ver también