|
| UTF7Encoding () |
| Constructor. More...
|
|
| UTF7Encoding (bool allow_optionals) |
| Constructor. More...
|
|
bool | operator== (const UTF7Encoding &other) const |
| Compares encodings parameters. More...
|
|
bool | Equals (SharedPtr< Object > obj) override |
| Compares with object. More...
|
|
int | GetHashCode () const override |
| Gets encoding hash code. More...
|
|
SharedPtr< Object > | Clone () override |
| Clones encoding object. More...
|
|
int | GetBytes (ArrayPtr< char_t > chars, int char_index, int char_count, ArrayPtr< uint8_t > bytes, int byte_index) override |
| Get the bytes that result from encoding a character buffer. More...
|
|
int | GetCharCount (ArrayPtr< uint8_t > bytes, int index, int count) override |
| Get the number of characters needed to decode a byte buffer. More...
|
|
int | GetChars (ArrayPtr< uint8_t > bytes, int byte_index, int byte_count, ArrayPtr< char_t > chars, int char_index) override |
| Get the characters that result from decoding a byte buffer. More...
|
|
int | GetMaxByteCount (int char_count) override |
| Get the maximum number of bytes needed to encode a specified number of characters. More...
|
|
int | GetMaxCharCount (int byte_count) override |
| Get the maximum number of characters needed to decode a specified number of bytes. More...
|
|
DecoderPtr | GetDecoder () override |
| Get a decoder that forwards requests to this object. More...
|
|
EncoderPtr | GetEncoder () override |
| Get an encoder that forwards requests to this object. More...
|
|
int | GetByteCount (const char_t *chars, int count) override |
| Get the number of characters needed to encode a character buffer. More...
|
|
int | GetBytes (const char_t *chars, int char_count, uint8_t *bytes, int byte_count) override |
| Get the bytes that result from encoding a character buffer. More...
|
|
int | GetBytes (const String &s, int char_index, int char_count, ArrayPtr< uint8_t > bytes, int byte_index) override |
| Get the bytes that result from encoding a character buffer. More...
|
|
int | GetCharCount (const uint8_t *bytes, int count) override |
| Get the number of characters needed to decode a byte buffer. More...
|
|
int | GetChars (const uint8_t *bytes, int byte_count, char_t *chars, int char_count) override |
| Get the characters that result from decoding a byte buffer. More...
|
|
String | GetString (ArrayPtr< uint8_t > bytes, int index, int count) override |
| Decodes a buffer of bytes into a string. More...
|
|
virtual int | GetByteCount (ArrayPtr< char_t > chars, int index, int count) |
| Get the number of characters needed to encode a character buffer. More...
|
|
virtual int | GetByteCount (System::Details::ArrayView< char_t > chars, int index, int count) |
| Get the number of characters needed to encode a character buffer. More...
|
|
template<std::size_t N> |
int | GetByteCount (const System::Details::StackArray< char_t, N > &chars, int index, int count) |
| Get the number of characters needed to encode a character buffer. More...
|
|
virtual int | GetByteCount (const String &s) |
| Get the number of characters needed to encode a string. More...
|
|
virtual int | GetByteCount (ArrayPtr< char_t > chars) |
| Get the number of characters needed to encode a character buffer. More...
|
|
virtual int | GetByteCount (const char_t *chars, int count) |
| Get the number of characters needed to encode a character buffer. More...
|
|
virtual int | GetBytes (ArrayPtr< char_t > chars, int char_index, int char_count, ArrayPtr< uint8_t > bytes, int byte_index) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual int | GetBytes (System::Details::ArrayView< char_t > chars, int char_index, int char_count, System::Details::ArrayView< uint8_t > bytes, int byte_index) |
| Get the bytes that result from encoding a character buffer. More...
|
|
template<std::size_t SC, std::size_t SB> |
int | GetBytes (System::Details::StackArray< char_t, SC > &chars, int char_index, int char_count, System::Details::StackArray< uint8_t, SB > &bytes, int byte_index) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual int | GetBytes (const String &s, int char_index, int char_count, ArrayPtr< uint8_t > bytes, int byte_index) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual ArrayPtr< uint8_t > | GetBytes (const String &s) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual ArrayPtr< uint8_t > | GetBytes (ArrayPtr< char_t > chars, int index, int count) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual ArrayPtr< uint8_t > | GetBytes (const System::Details::ArrayView< char_t > &chars, int index, int count) |
| Get the bytes that result from encoding a character buffer. More...
|
|
template<std::size_t N> |
ArrayPtr< uint8_t > | GetBytes (const System::Details::StackArray< char_t, N > &chars, int index, int count) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual ArrayPtr< uint8_t > | GetBytes (ArrayPtr< char_t > chars) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual int | GetBytes (const char_t *chars, int char_count, uint8_t *bytes, int byte_count) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual int | GetCharCount (ArrayPtr< uint8_t > bytes, int index, int count) |
| Get the number of characters needed to decode a byte buffer. More...
|
|
virtual int | GetCharCount (ArrayPtr< uint8_t > bytes) |
| Get the number of characters needed to decode a byte buffer. More...
|
|
virtual int | GetCharCount (const uint8_t *bytes, int count) |
| Get the number of characters needed to decode a byte buffer. More...
|
|
virtual int | GetChars (ArrayPtr< uint8_t > bytes, int byte_index, int byte_count, ArrayPtr< char_t > chars, int char_index) |
| Get the characters that result from decoding a byte buffer. More...
|
|
virtual ArrayPtr< char_t > | GetChars (ArrayPtr< uint8_t > bytes, int index, int count) |
| Get the characters that result from decoding a byte buffer. More...
|
|
virtual ArrayPtr< char_t > | GetChars (ArrayPtr< uint8_t > bytes) |
| Get the characters that result from decoding a byte buffer. More...
|
|
virtual int | GetChars (const uint8_t *bytes, int byte_count, char_t *chars, int char_count) |
| Get the characters that result from decoding a byte buffer. More...
|
|
virtual String | GetString (uint8_t *bytes, int byte_count) |
| Decodes a buffer of bytes into a string. More...
|
|
virtual String | GetString (ArrayPtr< uint8_t > bytes) |
| Decodes a buffer of bytes into a string. More...
|
|
virtual String | GetString (const System::Details::ArrayView< uint8_t > &bytes) |
| Decodes a buffer of bytes into a string. More...
|
|
template<std::size_t N> |
String | GetString (System::Details::StackArray< uint8_t, N > &bytes) |
| Decodes a buffer of bytes into a string. More...
|
|
virtual String | GetString (ArrayPtr< uint8_t > bytes, int index, int count) |
| Decodes a buffer of bytes into a string. More...
|
|
virtual String | GetString (const System::Details::ArrayView< uint8_t > &bytes, int index, int count) |
| Decodes a buffer of bytes into a string. More...
|
|
template<std::size_t N> |
String | GetString (System::Details::StackArray< uint8_t, N > bytes, int index, int count) |
| Decodes a buffer of bytes into a string. More...
|
|
bool | Equals (SharedPtr< Object > obj) override |
| Compares encodings. More...
|
|
int | GetHashCode () const override |
| Hashes encoding. More...
|
|
virtual int | get_CodePage () |
| Gets Windows codepage ID. More...
|
|
virtual int | get_WindowsCodePage () |
| Gets Windows codepage ID. More...
|
|
virtual String | get_WebName () |
| Gets IANA-compatible encoding name. More...
|
|
virtual String | get_BodyName () |
| Gets mail agent body compatible encoding name. More...
|
|
virtual String | get_EncodingName () |
| Gets human-readable encoding name. More...
|
|
virtual String | get_HeaderName () |
| Gets mail agent header compatible encoding name. More...
|
|
virtual bool | get_IsSingleByte () |
| Checks whether encoding is single byte. More...
|
|
virtual bool | get_IsBrowserDisplay () |
| Checks whether encoding can be used in browser to display content. More...
|
|
virtual bool | get_IsBrowserSave () |
| Checks whether encoding can be used in browser to save content. More...
|
|
virtual bool | get_IsMailNewsDisplay () |
| Checks whether encoding can be used in mail client to display content. More...
|
|
virtual bool | get_IsMailNewsSave () |
| Checks whether encoding can be used in mail client to save content. More...
|
|
bool | get_IsReadOnly () |
| Checks whether encoding is read-only. More...
|
|
DecoderFallbackPtr | get_DecoderFallback () const |
| Gets decoder fallback. More...
|
|
void | set_DecoderFallback (const DecoderFallbackPtr &value) |
| Sets decoder fallback. More...
|
|
const EncoderFallbackPtr | get_EncoderFallback () const |
| Gets encoder fallback. More...
|
|
void | set_EncoderFallback (const EncoderFallbackPtr &value) |
| Sets encoder fallback. More...
|
|
virtual int | GetByteCount (ArrayPtr< char_t > chars, int index, int count) |
| Get the number of characters needed to encode a character buffer. More...
|
|
virtual int | GetByteCount (System::Details::ArrayView< char_t > chars, int index, int count) |
| Get the number of characters needed to encode a character buffer. More...
|
|
template<std::size_t N> |
int | GetByteCount (const System::Details::StackArray< char_t, N > &chars, int index, int count) |
| Get the number of characters needed to encode a character buffer. More...
|
|
virtual int | GetByteCount (const String &s) |
| Get the number of characters needed to encode a string. More...
|
|
virtual int | GetByteCount (ArrayPtr< char_t > chars) |
| Get the number of characters needed to encode a character buffer. More...
|
|
virtual int | GetByteCount (const char_t *chars, int count) |
| Get the number of characters needed to encode a character buffer. More...
|
|
virtual int | GetBytes (ArrayPtr< char_t > chars, int char_index, int char_count, ArrayPtr< uint8_t > bytes, int byte_index) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual int | GetBytes (System::Details::ArrayView< char_t > chars, int char_index, int char_count, System::Details::ArrayView< uint8_t > bytes, int byte_index) |
| Get the bytes that result from encoding a character buffer. More...
|
|
template<std::size_t SC, std::size_t SB> |
int | GetBytes (System::Details::StackArray< char_t, SC > &chars, int char_index, int char_count, System::Details::StackArray< uint8_t, SB > &bytes, int byte_index) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual int | GetBytes (const String &s, int char_index, int char_count, ArrayPtr< uint8_t > bytes, int byte_index) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual ArrayPtr< uint8_t > | GetBytes (const String &s) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual ArrayPtr< uint8_t > | GetBytes (ArrayPtr< char_t > chars, int index, int count) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual ArrayPtr< uint8_t > | GetBytes (const System::Details::ArrayView< char_t > &chars, int index, int count) |
| Get the bytes that result from encoding a character buffer. More...
|
|
template<std::size_t N> |
ArrayPtr< uint8_t > | GetBytes (const System::Details::StackArray< char_t, N > &chars, int index, int count) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual ArrayPtr< uint8_t > | GetBytes (ArrayPtr< char_t > chars) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual int | GetBytes (const char_t *chars, int char_count, uint8_t *bytes, int byte_count) |
| Get the bytes that result from encoding a character buffer. More...
|
|
virtual int | GetCharCount (ArrayPtr< uint8_t > bytes, int index, int count) |
| Get the number of characters needed to decode a byte buffer. More...
|
|
virtual int | GetCharCount (ArrayPtr< uint8_t > bytes) |
| Get the number of characters needed to decode a byte buffer. More...
|
|
virtual int | GetCharCount (const uint8_t *bytes, int count) |
| Get the number of characters needed to decode a byte buffer. More...
|
|
virtual int | GetChars (ArrayPtr< uint8_t > bytes, int byte_index, int byte_count, ArrayPtr< char_t > chars, int char_index) |
| Get the characters that result from decoding a byte buffer. More...
|
|
virtual ArrayPtr< char_t > | GetChars (ArrayPtr< uint8_t > bytes, int index, int count) |
| Get the characters that result from decoding a byte buffer. More...
|
|
virtual ArrayPtr< char_t > | GetChars (ArrayPtr< uint8_t > bytes) |
| Get the characters that result from decoding a byte buffer. More...
|
|
virtual int | GetChars (const uint8_t *bytes, int byte_count, char_t *chars, int char_count) |
| Get the characters that result from decoding a byte buffer. More...
|
|
virtual DecoderPtr | GetDecoder () |
| Get a decoder that forwards requests to this object. More...
|
|
virtual EncoderPtr | GetEncoder () |
| Get an encoder that forwards requests to this object. More...
|
|
virtual String | GetString (uint8_t *bytes, int byte_count) |
| Decodes a buffer of bytes into a string. More...
|
|
virtual String | GetString (ArrayPtr< uint8_t > bytes) |
| Decodes a buffer of bytes into a string. More...
|
|
virtual String | GetString (const System::Details::ArrayView< uint8_t > &bytes) |
| Decodes a buffer of bytes into a string. More...
|
|
template<std::size_t N> |
String | GetString (System::Details::StackArray< uint8_t, N > &bytes) |
| Decodes a buffer of bytes into a string. More...
|
|
virtual String | GetString (ArrayPtr< uint8_t > bytes, int index, int count) |
| Decodes a buffer of bytes into a string. More...
|
|
virtual String | GetString (const System::Details::ArrayView< uint8_t > &bytes, int index, int count) |
| Decodes a buffer of bytes into a string. More...
|
|
template<std::size_t N> |
String | GetString (System::Details::StackArray< uint8_t, N > bytes, int index, int count) |
| Decodes a buffer of bytes into a string. More...
|
|
virtual int | GetMaxByteCount (int char_count)=0 |
| Get the maximum number of bytes needed to encode a specified number of characters. More...
|
|
virtual int | GetMaxCharCount (int byte_count)=0 |
| Get the maximum number of characters needed to decode a specified number of bytes. More...
|
|
virtual SharedPtr< Object > | Clone () |
| Clones encoding object. More...
|
|
virtual ArrayPtr< uint8_t > | GetPreamble () |
| Returns a sequence of bytes that denotes the encoding (e. g. BOM). More...
|
|
| Object () |
| Creates object. Initializes all internal data structures. More...
|
|
virtual | ~Object () |
| Destroys object. Frees all internal data structures. More...
|
|
| Object (Object const &x) |
| Copy constructor. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
|
|
Object & | operator= (Object const &x) |
| Assignment operator. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
|
|
Object * | SharedRefAdded () |
| Increments shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
|
|
int | SharedRefRemovedSafe () |
| Decrements and returns shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
|
|
int | RemovedSharedRefs (int count) |
| Decreases shared reference count by specified value. More...
|
|
Detail::SmartPtrCounter * | WeakRefAdded () |
| Increments weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
|
|
void | WeakRefRemoved () |
| Decrements weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
|
|
Detail::SmartPtrCounter * | GetCounter () |
| Gets reference counter data structure associated with the object. More...
|
|
int | SharedCount () const |
| Gets current value of shared reference counter. More...
|
|
void | Lock () |
| Implements C# lock() statement locking. Call directly or use LockContext sentry object. More...
|
|
void | Unlock () |
| Implements C# lock() statement unlocking. Call directly or use LockContext sentry object. More...
|
|
virtual bool | Equals (ptr obj) |
| Compares objects using C# Object.Equals semantics. More...
|
|
virtual int32_t | GetHashCode () const |
| Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. More...
|
|
virtual String | ToString () const |
| Analog of C# Object.ToString() method. Enables converting custom objects to string. More...
|
|
virtual ptr | MemberwiseClone () const |
| Analog of C# Object.MemberwiseClone() method. Enables cloning custom types. More...
|
|
virtual const TypeInfo & | GetType () const |
| Gets actual type of object. Analog of C# System.Object.GetType() call. More...
|
|
virtual bool | Is (const TypeInfo &targetType) const |
| Check if object represents an instance of type described by targetType. Analog of C# 'is' operator. More...
|
|
virtual void | SetTemplateWeakPtr (uint32_t argument) |
| Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. More...
|
|
virtual bool | FastCast (const Details::FastRttiBase &helper, void **out_ptr) const |
| For internal purposes only. More...
|
|
template<> |
bool | ReferenceEquals (String const &str, std::nullptr_t) |
| Specialization of Object::ReferenceEquals for case of string and nullptr. More...
|
|
template<> |
bool | ReferenceEquals (String const &str1, String const &str2) |
| Specialization of Object::ReferenceEquals for case of strings. More...
|
|