Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Network.IoTConnectivity / Tizen.Network.IoTConnectivity / DeviceInformationFoundEventArgs.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 namespace Tizen.Network.IoTConnectivity
19 {
20     /// <summary>
21     /// This class represents event arguments of the DeviceInformationFound event.
22     /// </summary>
23     /// <since_tizen> 3 </since_tizen>
24     public class DeviceInformationFoundEventArgs
25     {
26         internal DeviceInformationFoundEventArgs() { }
27
28         /// <summary>
29         /// The request ID.
30         /// </summary>
31         /// <since_tizen> 3 </since_tizen>
32         /// <value>The request ID.</value>
33         public int RequestId { get; internal set; }
34
35         /// <summary>
36         /// Indicates to continuously receive the event for finding device information.
37         /// </summary>
38         /// <since_tizen> 3 </since_tizen>
39         /// <value>Continuously receive the event for finding device information.</value>
40         public bool EventContinue { get; set; }
41
42         /// <summary>
43         /// Indicates the human friendly name for device.
44         /// </summary>
45         /// <since_tizen> 3 </since_tizen>
46         /// <value>Human friendly name for device.</value>
47         public string Name { get; internal set; }
48
49         /// <summary>
50         /// Indicates the spec version of the core specification.
51         /// </summary>
52         /// <since_tizen> 3 </since_tizen>
53         /// <value>Spec version of the core specification.</value>
54         public string SpecVersion { get; internal set; }
55
56         /// <summary>
57         /// Indicates an unique identifier for the OIC device.
58         /// </summary>
59         /// <since_tizen> 3 </since_tizen>
60         /// <value>Unique identifier for OIC device.</value>
61         public string DeviceId { get; internal set; }
62
63         /// <summary>
64         /// Indicates version of the specs this device data model is implemented to.
65         /// </summary>
66         /// <since_tizen> 3 </since_tizen>
67         /// <value>Version of the specs this device data model is implemented to.</value>
68         public string DataModelVersion { get; internal set; }
69     }
70 }