CefResponseFilterStatus.cs 831 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_response_filter_status_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. /// <summary>
  8. /// Return values for CefResponseFilter::Filter().
  9. /// </summary>
  10. public enum CefResponseFilterStatus
  11. {
  12. /// <summary>
  13. /// Some or all of the pre-filter data was read successfully but more data is
  14. /// needed in order to continue filtering (filtered output is pending).
  15. /// </summary>
  16. NeedMoreData,
  17. /// <summary>
  18. /// Some or all of the pre-filter data was read successfully and all available
  19. /// filtered output has been written.
  20. /// </summary>
  21. Done,
  22. /// <summary>
  23. /// An error occurred during filtering.
  24. /// </summary>
  25. Error,
  26. }
  27. }