12345678910111213141516171819202122 |
- //
- // This file manually written from cef/include/internal/cef_types.h.
- // C API name: cef_value_type_t.
- //
- namespace Xilium.CefGlue
- {
- /// <summary>
- /// Supported value types.
- /// </summary>
- public enum CefValueType
- {
- Invalid = 0,
- Null,
- Bool,
- Int,
- Double,
- String,
- Binary,
- Dictionary,
- List,
- }
- }
|