System::Text::UTF7Encoding::GetChars メソッド
コンテンツ
[
隠れる
]UTF7Encoding::GetChars(ArrayPtr<uint8_t>) method
バイトバッファをデコードした結果得られる文字列を取得します。
virtual ArrayPtr<char_t> System::Text::Encoding::GetChars(ArrayPtr<uint8_t> bytes)
| パラメーター | 型 | 説明 |
|---|---|---|
| bytes | ArrayPtr<uint8_t> | Buffer からバイトを読み取ります。 |
ReturnValue
Buffer of decoded characters.
参照
- Typedef ArrayPtr
- Class UTF7Encoding
- Namespace System::Text
- Library Aspose.Page for C++
UTF7Encoding::GetChars(ArrayPtr<uint8_t>, int, int, ArrayPtr<char_t>, int) method
バイトバッファをデコードした結果得られる文字列を取得します。
int System::Text::UTF7Encoding::GetChars(ArrayPtr<uint8_t> bytes, int byte_index, int byte_count, ArrayPtr<char_t> chars, int char_index) override
| パラメーター | 型 | 説明 |
|---|---|---|
| bytes | ArrayPtr<uint8_t> | Buffer からバイトを読み取ります。 |
| byte_index | int | 入力バッファのオフセット。 |
| byte_count | int | 入力バッファのサイズ。 |
| chars | ArrayPtr<char_t> | Buffer に文字を入れるためのバッファ。 |
| char_index | int | 出力バッファのオフセット。 |
ReturnValue
書き込まれた文字数。
参照
- Typedef ArrayPtr
- Class UTF7Encoding
- Namespace System::Text
- Library Aspose.Page for C++
UTF7Encoding::GetChars(ArrayPtr<uint8_t>, int, int) method
バイトバッファをデコードした結果得られる文字列を取得します。
virtual ArrayPtr<char_t> System::Text::Encoding::GetChars(ArrayPtr<uint8_t> bytes, int index, int count)
| パラメーター | 型 | 説明 |
|---|---|---|
| bytes | ArrayPtr<uint8_t> | Buffer からバイトを読み取ります。 |
| インデックス | int | 入力バッファのオフセット。 |
| count | int | 入力バッファのサイズ。 |
ReturnValue
Buffer of decoded characters.
参照
- Typedef ArrayPtr
- Class UTF7Encoding
- Namespace System::Text
- Library Aspose.Page for C++
UTF7Encoding::GetChars(const uint8_t *, int, char_t *, int) method
バイトバッファをデコードした結果得られる文字列を取得します。
int System::Text::UTF7Encoding::GetChars(const uint8_t *bytes, int byte_count, char_t *chars, int char_count) override
| パラメーター | 型 | 説明 |
|---|---|---|
| bytes | const uint8_t * | Buffer からバイトを読み取ります。 |
| byte_count | int | 入力バッファのサイズ。 |
| chars | char_t * | Buffer に文字を入れるためのバッファ。 |
| char_count | int | 出力バッファのサイズ。 |
ReturnValue
書き込まれた文字数。
参照
- Class UTF7Encoding
- Namespace System::Text
- Library Aspose.Page for C++