System::Web::HttpUtility::UrlDecodeToBytes メソッド

HttpUtility::UrlDecodeToBytes(const String&) method

バイト文字列から URI フラグメントをデコードします。

static System::ArrayPtr<uint8_t> System::Web::HttpUtility::UrlDecodeToBytes(const String &str)
パラメーター説明
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)
パラメーター説明
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)
パラメーター説明
バイト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)
パラメーター説明
バイトconst System::ArrayPtr<uint8_t>&エンコードされた URI フラグメント。
offsetint32_t指定されたバイト配列内のオフセット。
countint32_t読み取るバイト数。

ReturnValue

デコードされた URI フラグメント。

参照