System::Text::UTF8Encoding class
Contents
[
Hide
]UTF8Encoding class
UTF-8 encoding. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
class UTF8Encoding : public System::Text::ICUEncoding
Methods
| Method | Description | 
|---|---|
| Clone() override | Clones encoding object. | 
| Equals(SharedPtr<Object>) override | Compares with object. | 
| GetHashCode() const override | Gets encoding hash code. | 
| GetMaxByteCount(int) override | Get the maximum number of bytes needed to encode a specified number of characters. | 
| GetMaxCharCount(int) override | Get the maximum number of characters needed to decode a specified number of bytes. | 
| GetPreamble() override | Get codepage preamble. | 
| operator==(const UTF8Encoding&) const | Compares encodings parameters. | 
| UTF8Encoding() | Constructor. | 
| UTF8Encoding(bool) | Constructor. | 
| UTF8Encoding(bool, bool) | Constructor. | 
Fields
| Field | Description | 
|---|---|
| static constexpr DEFAULT_CODE_PAGE | Default codepage value. | 
| static constexpr UTF8_CODE_PAGE | RTTI information. | 
See Also
- Class ICUEncoding
- Namespace System::Text
- Library Aspose.PDF for C++