AsyncCompletionResult.cs 419 B

12345678910111213141516171819
  1. // <copyright>
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. // </copyright>
  4. namespace System.Runtime
  5. {
  6. enum AsyncCompletionResult
  7. {
  8. /// <summary>
  9. /// Inidicates that the operation has been queued for completion.
  10. /// </summary>
  11. Queued,
  12. /// <summary>
  13. /// Indicates the operation has completed.
  14. /// </summary>
  15. Completed,
  16. }
  17. }