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

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

URI フラグメントをエンコードします。

static String System::Web::HttpUtility::UrlEncode(const System::ArrayPtr<uint8_t> &bytes)
パラメーター説明
バイトconst System::ArrayPtr<uint8_t>&エンコードする URI フラグメント。

ReturnValue

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

参照

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

URI フラグメントをエンコードします。

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

ReturnValue

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

参照

HttpUtility::UrlEncode(String) method

URI フラグメントをエンコードします。

static String System::Web::HttpUtility::UrlEncode(String str)
パラメーター説明
strStringエンコードする URI フラグメント。

ReturnValue

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

参照

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

URI フラグメントをエンコードします。

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

ReturnValue

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

参照