CefXmlEncodingType.cs 620 B

123456789101112131415161718192021
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_xml_encoding_type_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. /// <summary>
  8. /// Supported XML encoding types. The parser supports ASCII, ISO-8859-1, and
  9. /// UTF16 (LE and BE) by default. All other types must be translated to UTF8
  10. /// before being passed to the parser. If a BOM is detected and the correct
  11. /// decoder is available then that decoder will be used automatically.
  12. /// </summary>
  13. public enum CefXmlEncoding
  14. {
  15. None = 0,
  16. Utf8,
  17. Utf16LE,
  18. Utf16BE,
  19. Ascii,
  20. }
  21. }