Clase System::Text::ICUDecoder
Contenido
[
Ocultar
]ICUDecoder class
Decoder that uses ICU for decoding. 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 ICUDecoder : public System::Text::Decoder
Métodos
| Método | Descripción |
|---|---|
| virtual Convert(ArrayPtr<uint8_t>, int, int, ArrayPtr<char_t>, int, int, bool, int&, int&, bool&) | Convierte bytes a caracteres. |
| virtual Convert(const uint8_t *, int, char_t *, int, bool, int&, int&, bool&) | Convierte bytes a caracteres. |
| virtual GetCharCount(ArrayPtr<uint8_t>, int, int) | Obtiene la cantidad de caracteres necesarios para decodificar un búfer. |
| virtual GetCharCount(ArrayPtr<uint8_t>, int, int, bool) | Obtiene la cantidad de caracteres necesarios para decodificar un búfer. |
| virtual GetCharCount(const uint8_t *, int, bool) | Obtiene la cantidad de caracteres necesarios para decodificar un búfer. |
| virtual GetChars(ArrayPtr<uint8_t>, int, int, ArrayPtr<char_t>, int) | Obtenga los caracteres que resultan de decodificar un búfer. |
| virtual GetChars(ArrayPtr<uint8_t>, int, int, ArrayPtr<char_t>, int, bool) | Obtenga los caracteres que resultan de decodificar un búfer. |
| virtual GetChars(const uint8_t *, int, char_t *, int, bool) | Obtenga los caracteres que resultan de decodificar un búfer. |
| ICUDecoder(ICUEncoding *) | Constructor. |
| virtual Reset() | Establece las variables internas al estado inicial. |
| virtual ~ICUDecoder() | Destructor. |
Typedefs
| Typedef | Descripción |
|---|---|
| Base | Tipo Base. |
Ver también
- Class Decoder
- Namespace System::Text
- Library Aspose.Page for C++