1234567891011121314151617181920212223242526272829303132333435 |
- // -
- // <copyright file="Status.cs" company="Microsoft Corporation">
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // </copyright>
- // -
- namespace Microsoft.Hawaii
- {
- /// <summary>
- /// Describes the status of a Hawaii service call.
- /// </summary>
- public enum Status
- {
- /// <summary>
- /// Defaut status code.
- /// </summary>
- Unspecified,
- /// <summary>
- /// Specifies that the service call completed successfully.
- /// </summary>
- Success,
-
- /// <summary>
- /// Specifies that the service call completed with an internal server error.
- /// </summary>
- InternalServerError,
- /// <summary>
- /// Specifies that the service call completed with an error.
- /// </summary>
- Error
- }
- }
|