From: Myungki Lee Date: Thu, 27 Apr 2017 09:16:49 +0000 (+0900) Subject: Modify to inherit from EventArgs X-Git-Tag: submit/trunk/20170823.075128~121^2~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ca58aaacf26f8d9ecb364da61e643c9ce212ff4;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Modify to inherit from EventArgs - NotificationEventArgs, NotificationDeleteEventArgs Change-Id: I5eb98a54087f77ff07d74eaccaae1c17ce5b40bc Signed-off-by: Myungki Lee --- diff --git a/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs b/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs index c358c1b..48ed56c 100755 --- a/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs +++ b/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs @@ -16,10 +16,11 @@ namespace Tizen.Applications.NotificationEventListener { + using System; /// /// This class provides the property to get information about the deleted notification. /// - public class NotificationDeleteEventArgs + public class NotificationDeleteEventArgs : EventArgs { /// /// Gets the unique number of the Notification. diff --git a/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs b/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs index 541a58f..ed1b777 100755 --- a/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs +++ b/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs @@ -23,7 +23,7 @@ namespace Tizen.Applications.NotificationEventListener /// /// This class provides the methods and properties to get information about the posted or updated notification. /// - public partial class NotificationEventArgs + public partial class NotificationEventArgs : EventArgs { private const string LogTag = "Tizen.Applications.NotificationEventListener";