Enum ByteOrderMark.BOMType
Members of this enumeration report the type of byte order mark, if any, present at its beginning.
Namespace: WizardWrx
Assembly: WizardWrx.Common.dll
Syntax
public enum BOMType
Fields
Name | Description |
---|---|
None | The array has no Byte Order Mark. |
UnicodeBigEndian | UnicodeLittleEndian is a synonym of UTF16BE, the encoding that corresponds to the wide character encoding on Microsoft Windows, running on a big-endian processor, which MAY include code that runs on ARM processors. |
UnicodeLittleEndian | UnicodeLittleEndian is a synonym of UTF16LE, the encoding that corresponds to the wide character encoding on Microsoft Windows. |
UTF16BE | The array has a UTF-16 Byte Order Mark that indicates big-endian character encoding. |
UTF16LE | The array has a UTF-16 Byte Order Mark that indicates little-endian character encoding. |
UTF32BE | The array has a UTF-32 Byte Order Mark that indicates big-endian character encoding. |
UTF32LE | The array has a UTF-32 Byte Order Mark that indicates little-endian character encoding. |
UTF8 | The array has a UTF-8 Byte Order Mark. |