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

HttpUtility::UrlEncodeToBytes(const String&) method

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

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

ReturnValue

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

参照

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

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

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

ReturnValue

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

参照

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

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

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

ReturnValue

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

参照

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

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

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

ReturnValue

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

参照