bae38d12e29485fdcb38bc67610266a2717aba6d
[platform/core/csapi/tizenfx.git] / src / Tizen.Network.IoTConnectivity / Tizen.Network.IoTConnectivity / ObserverNotifiedEventArgs.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     /// This class is an event arguments of the ObserverNotified event.
15     /// </summary>
16     public class ObserverNotifiedEventArgs : EventArgs
17     {
18         internal ObserverNotifiedEventArgs() { }
19
20         /// <summary>
21         /// Result of the observe response
22         /// </summary>
23         public ResponseCode Result { get; internal set; }
24
25         /// <summary>
26         /// Representation of the resource being observed.
27         /// </summary>
28         public Representation Representation { get; internal set; }
29     }
30 }