ReasonCannotSend.cs 526 B

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