System::Text::Encoding::GetString method
Contents
[
Hide
]Encoding::GetString(uint8_t *, int) method
Decodes a buffer of bytes into a string.
virtual String System::Text::Encoding::GetString(uint8_t *bytes, int byte_count)
Parameter | Type | Description |
---|---|---|
bytes | uint8_t * | Buffer to read bytes from. |
byte_count | int | Input buffer size. |
ReturnValue
String of decoded characters.
See Also
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.PUB for C++
Encoding::GetString(ArrayPtr<uint8_t>) method
Decodes a buffer of bytes into a string.
virtual String System::Text::Encoding::GetString(ArrayPtr<uint8_t> bytes)
Parameter | Type | Description |
---|---|---|
bytes | ArrayPtr<uint8_t> | Buffer to read bytes from. |
ReturnValue
String of decoded characters.
See Also
- Class String
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.PUB for C++
Encoding::GetString(const System::Details::ArrayView<uint8_t>&) method
Decodes a buffer of bytes into a string.
virtual String System::Text::Encoding::GetString(const System::Details::ArrayView<uint8_t> &bytes)
Parameter | Type | Description |
---|---|---|
bytes | const System::Details::ArrayView<uint8_t>& | Buffer to read bytes from. |
ReturnValue
String of decoded characters.
See Also
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.PUB for C++
Encoding::GetString(System::Details::StackArray<uint8_t, N>&) method
Decodes a buffer of bytes into a string.
template<std::size_t> String System::Text::Encoding::GetString(System::Details::StackArray<uint8_t, N> &bytes)
Parameter | Type | Description |
---|---|---|
bytes | System::Details::StackArray<uint8_t, N>& | Buffer to read bytes from. |
ReturnValue
String of decoded characters.
See Also
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.PUB for C++
Encoding::GetString(ArrayPtr<uint8_t>, int, int) method
Decodes a buffer of bytes into a string.
virtual String System::Text::Encoding::GetString(ArrayPtr<uint8_t> bytes, int index, int count)
Parameter | Type | Description |
---|---|---|
bytes | ArrayPtr<uint8_t> | Buffer to read bytes from. |
index | int | Input buffer offset. |
count | int | Input buffer size. |
ReturnValue
String of decoded characters.
See Also
- Class String
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.PUB for C++
Encoding::GetString(const System::Details::ArrayView<uint8_t>&, int, int) method
Decodes a buffer of bytes into a string.
virtual String System::Text::Encoding::GetString(const System::Details::ArrayView<uint8_t> &bytes, int index, int count)
Parameter | Type | Description |
---|---|---|
bytes | const System::Details::ArrayView<uint8_t>& | Buffer to read bytes from. |
index | int | Input buffer offset. |
count | int | Input buffer size. |
ReturnValue
String of decoded characters.
See Also
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.PUB for C++
Encoding::GetString(System::Details::StackArray<uint8_t, N>, int, int) method
Decodes a buffer of bytes into a string.
template<std::size_t> String System::Text::Encoding::GetString(System::Details::StackArray<uint8_t, N> bytes, int index, int count)
Parameter | Type | Description |
---|---|---|
bytes | System::Details::StackArray<uint8_t, N> | Buffer to read bytes from. |
index | int | Input buffer offset. |
count | int | Input buffer size. |
ReturnValue
String of decoded characters.
See Also
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.PUB for C++