طريقة System::Web::HttpUtility::UrlDecodeToBytes

HttpUtility::UrlDecodeToBytes(const String&) method

يفكّ ترميز شظية URI من سلسلة بايت.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str)
ParameterTypeالوصف
strconst String&جزء URI المُرمّز.

ReturnValue

جزء URI تم فك ترميزه.

انظر أيضًا

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

يفكّ ترميز شظية URI من سلسلة.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str, const System::SharedPtr<Text::Encoding> &e)
ParameterTypeالوصف
strconst String&جزء URI المُرمّز.
econst System::SharedPtr<Text::Encoding>&الترميز للاستخدام.

ReturnValue

جزء URI تم فك ترميزه.

انظر أيضًا

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

يفكّ ترميز شظية URI من مصفوفة بايت.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes)
ParameterTypeالوصف
بايتاتconst System::ArrayPtr<uint8_t>&جزء URI المُرمّز.

ReturnValue

جزء URI تم فك ترميزه.

انظر أيضًا

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

يفكّ ترميز شظية URI من مصفوفة بايت.

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const System::ArrayPtr<uint8_t> &bytes, int32_t offset, int32_t count)
ParameterTypeالوصف
بايتاتconst System::ArrayPtr<uint8_t>&جزء URI المُرمّز.
الإزاحةint32_tالإزاحة في مصفوفة البايتات المعطاة.
countint32_tعدد البايتات للقراءة من.

ReturnValue

جزء URI تم فك ترميزه.

انظر أيضًا