IAwaiter.cs 341 B

1234567891011121314
  1. namespace ET
  2. {
  3. public enum AwaiterStatus: byte
  4. {
  5. /// <summary>The operation has not yet completed.</summary>
  6. Pending = 0,
  7. /// <summary>The operation completed successfully.</summary>
  8. Succeeded = 1,
  9. /// <summary>The operation completed with an error.</summary>
  10. Faulted = 2,
  11. }
  12. }