Status.cs 878 B

1234567891011121314151617181920212223242526272829303132333435
  1. // -
  2. // <copyright file="Status.cs" company="Microsoft Corporation">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // -
  6. namespace Microsoft.Hawaii
  7. {
  8. /// <summary>
  9. /// Describes the status of a Hawaii service call.
  10. /// </summary>
  11. public enum Status
  12. {
  13. /// <summary>
  14. /// Defaut status code.
  15. /// </summary>
  16. Unspecified,
  17. /// <summary>
  18. /// Specifies that the service call completed successfully.
  19. /// </summary>
  20. Success,
  21. /// <summary>
  22. /// Specifies that the service call completed with an internal server error.
  23. /// </summary>
  24. InternalServerError,
  25. /// <summary>
  26. /// Specifies that the service call completed with an error.
  27. /// </summary>
  28. Error
  29. }
  30. }