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

HttpUtility::UrlDecode(const System::ArrayPtr<uint8_t>&, const System::SharedPtr<Text::Encoding>&) method

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

static String System::Web::HttpUtility::UrlDecode(const System::ArrayPtr<uint8_t> &bytes, const System::SharedPtr<Text::Encoding> &e)
パラメーター説明
バイトconst System::ArrayPtr<uint8_t>&エンコードされた URI フラグメント。
econst System::SharedPtr<Text::Encoding>&使用するエンコーディング。

ReturnValue

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

参照

HttpUtility::UrlDecode(const System::ArrayPtr<uint8_t>&, int32_t, int32_t, const System::SharedPtr<Text::Encoding>&) method

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

static String System::Web::HttpUtility::UrlDecode(const System::ArrayPtr<uint8_t> &bytes, int32_t offset, int32_t count, const System::SharedPtr<Text::Encoding> &e)
パラメーター説明
バイトconst System::ArrayPtr<uint8_t>&エンコードされた URI フラグメント。
offsetint32_t指定されたバイト配列内のオフセット。
countint32_t読み取るバイト数。
econst System::SharedPtr<Text::Encoding>&使用するエンコーディング。

ReturnValue

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

参照

HttpUtility::UrlDecode(String) method

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

static String System::Web::HttpUtility::UrlDecode(String str)
パラメーター説明
strStringエンコードされた URI フラグメント。

ReturnValue

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

参照

HttpUtility::UrlDecode(String, System::SharedPtr<Text::Encoding>) method

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

static String System::Web::HttpUtility::UrlDecode(String str, System::SharedPtr<Text::Encoding> e)
パラメーター説明
strStringエンコードされた URI フラグメント。
eSystem::SharedPtr<Text::Encoding>使用するエンコーディング。

ReturnValue

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

参照