ReasonCannotSend.cs 514 B

1234567891011121314151617181920
  1. namespace Terminal.Gui.Drivers;
  2. internal enum ReasonCannotSend
  3. {
  4. /// <summary>
  5. /// No reason given.
  6. /// </summary>
  7. None = 0,
  8. /// <summary>
  9. /// The parser is already waiting for a request to complete with the given terminator.
  10. /// </summary>
  11. OutstandingRequest,
  12. /// <summary>
  13. /// There have been too many requests sent recently, new requests will be put into
  14. /// queue to prevent console becoming unresponsive.
  15. /// </summary>
  16. TooManyRequests
  17. }