CefNavigationType.cs 268 B

12345678910111213141516
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_log_severity_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. public enum CefNavigationType
  8. {
  9. LinkClicked = 0,
  10. FormSubmitted,
  11. BackForward,
  12. Reload,
  13. FormResubmitted,
  14. Other,
  15. }
  16. }