CefValueType.cs 393 B

12345678910111213141516171819202122
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_value_type_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. /// <summary>
  8. /// Supported value types.
  9. /// </summary>
  10. public enum CefValueType
  11. {
  12. Invalid = 0,
  13. Null,
  14. Bool,
  15. Int,
  16. Double,
  17. String,
  18. Binary,
  19. Dictionary,
  20. List,
  21. }
  22. }