[IoTConnectivity] Added Base implementation
[platform/core/csapi/iotcon.git] / Tizen.Network.IoTConnectivity / Tizen.Network.IoTConnectivity / ObserveType.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     /// Observe type.
13     /// </summary>
14     public enum ObserveType
15     {
16         /// <summary>
17         /// No observe action
18         /// </summary>
19         NoType = 0,
20
21         /// <summary>
22         /// Indicates action of registering observation
23         /// </summary>
24         Register = 1,
25
26         /// <summary>
27         /// Indicates action of unregistering observation
28         /// </summary>
29         Deregister = 2,
30     }
31 }
32