eb2fbba8fd1c89377b3e3a6f8c31701decc3b990
[platform/core/csapi/tizenfx.git] / src / Tizen.Network.IoTConnectivity / Tizen.Network.IoTConnectivity / ResponseCode.cs
1 /// Copyright 2016 by Samsung Electronics, Inc.,
2 ///
3 /// This software is the confidential and proprietary information
4 /// of Samsung Electronics, Inc. ("Confidential Information"). You
5 /// shall not disclose such Confidential Information and shall use
6 /// it only in accordance with the terms of the license agreement
7 /// you entered into with Samsung.
8
9 namespace Tizen.Network.IoTConnectivity
10 {
11     /// <summary>
12     /// Enumeration for result of response
13     /// </summary>
14     public enum ResponseCode
15     {
16         /// <summary>
17         /// Indicates result of response for success
18         /// </summary>
19         Ok = 0,
20         /// <summary>
21         /// Indicates result of response for some error
22         /// </summary>
23         Error,
24         /// <summary>
25         /// Indicates result of response for created resource
26         /// </summary>
27         Created,
28         /// <summary>
29         ///  Indicates result of response for deleted resource
30         /// </summary>
31         Deleted,
32         /// <summary>
33         ///  Indicates result of response for changed resource
34         /// </summary>
35         Changed,
36         /// <summary>
37         /// Indicates result of response for slow resource
38         /// </summary>
39         Slow,
40         /// <summary>
41         /// Indicates result of response for accessing unauthorized resource
42         /// </summary>
43         Forbidden
44     }
45 }