[IoTConnectivity] Added Base implementation
[platform/core/csapi/iotcon.git] / Tizen.Network.IoTConnectivity / Tizen.Network.IoTConnectivity / PresenceReceivedEventArgs.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 using System;
10
11 namespace Tizen.Network.IoTConnectivity
12 {
13     /// <summary>
14     /// PresenceReceivedEventArgs class. This class is an event arguments of the PresenceReceived event.
15     /// </summary>
16     public class PresenceReceivedEventArgs : EventArgs
17     {
18         /// <summary>
19         /// PresenceId property.
20         /// </summary>
21         /// <returns>int PresenceId.</returns>
22         public int PresenceId { get; internal set; }
23
24         /// <summary>
25         /// EventType property.
26         /// </summary>
27         /// <returns>PresenceEventType EventType.</returns>
28         public PresenceEventType EventType { get; internal set; }
29
30         /// <summary>
31         /// HostAddress property.
32         /// </summary>
33         /// <returns>string HostAddress.</returns>
34         public string HostAddress { get; internal set; }
35
36         /// <summary>
37         /// Type property.
38         /// </summary>
39         /// <returns>string Type.</returns>
40         public string Type { get; internal set; }
41     }
42 }