summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMyungki Lee <mk5004.lee@samsung.com>2017-04-27 18:16:49 +0900
committerSon seungha <seungha.son@samsung.com>2017-05-08 01:23:56 +0000
commit7daf54ced28e61b4ebc6ead36796b161834cbc61 (patch)
tree2ff1cb09bc2caf51ce5b11bb2f53079c143a1941
parentf5c634837d131d0e2ef3beb5c4f6fe05acb0aa50 (diff)
downloadapplication-7daf54ced28e61b4ebc6ead36796b161834cbc61.tar.gz
application-7daf54ced28e61b4ebc6ead36796b161834cbc61.tar.bz2
application-7daf54ced28e61b4ebc6ead36796b161834cbc61.zip
Modify to inherit from EventArgs
- NotificationEventArgs, NotificationDeleteEventArgs Change-Id: I5eb98a54087f77ff07d74eaccaae1c17ce5b40bc Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs3
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs2
2 files changed, 3 insertions, 2 deletions
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs
index c358c1b..48ed56c 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs
@@ -16,10 +16,11 @@
namespace Tizen.Applications.NotificationEventListener
{
+ using System;
/// <summary>
/// This class provides the property to get information about the deleted notification.
/// </summary>
- public class NotificationDeleteEventArgs
+ public class NotificationDeleteEventArgs : EventArgs
{
/// <summary>
/// Gets the unique number of the Notification.
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs
index 541a58f..ed1b777 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs
@@ -23,7 +23,7 @@ namespace Tizen.Applications.NotificationEventListener
/// <summary>
/// This class provides the methods and properties to get information about the posted or updated notification.
/// </summary>
- public partial class NotificationEventArgs
+ public partial class NotificationEventArgs : EventArgs
{
private const string LogTag = "Tizen.Applications.NotificationEventListener";