CefDomNodeType.cs 467 B

12345678910111213141516171819202122232425
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_dom_node_type_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. using System;
  8. /// <summary>
  9. /// DOM node types.
  10. /// </summary>
  11. public enum CefDomNodeType
  12. {
  13. Unsupported = 0,
  14. Element,
  15. Attribute,
  16. Text,
  17. CDataSection,
  18. ProcessingInstruction,
  19. Comment,
  20. Document,
  21. DocumentType,
  22. DocumentFragment,
  23. }
  24. }