Add NamespaceDoc.cs
[platform/core/csapi/tizenfx.git] / src / Tizen.Network.IoTConnectivity / Tizen.Network.IoTConnectivity / ResourcePolicy.cs
1  /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 using System;
19
20 namespace Tizen.Network.IoTConnectivity
21 {
22     /// <summary>
23     /// Enumeration for policy which can be held in a resource.
24     /// </summary>
25     public enum ResourcePolicy
26     {
27         /// <summary>
28         /// Indicates resource uninitialized
29         /// </summary>
30         NoProperty = 0,
31         /// <summary>
32         /// Indicates resource that is allowed to be discovered
33         /// </summary>
34         Discoverable = (1 << 0),
35         /// <summary>
36         /// Indicates resource that is allowed to be observed
37         /// </summary>
38         Observable = (1 << 1),
39         /// <summary>
40         /// Indicates resource initialized and activated
41         /// </summary>
42         Active = (1 << 2),
43         /// <summary>
44         /// Indicates resource which takes some delay to respond
45         /// </summary>
46         Slow = (1 << 3),
47         /// <summary>
48         /// Indicates secure resource
49         /// </summary>
50         Secure = (1 << 4),
51         /// <summary>
52         /// When this bit is set, the resource is allowed to be discovered only if discovery request contains an explicit querystring.
53         /// </summary>
54         ExplicitDiscoverable = (1 << 5),
55     }
56 }