From: SukHyung, Kang Date: Wed, 5 Jul 2017 05:05:54 +0000 (+0900) Subject: add since_tizen tag for API reference X-Git-Tag: accepted/tizen/unified/20170811.021228~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d11e2fd3367071473e292c88ddbf97d39072446d;p=platform%2Fcore%2Fcsapi%2Fbadge.git add since_tizen tag for API reference Change-Id: I96232670dd661c5b52ca9e68a4c81f456fd1af82 Signed-off-by: SukHyung, Kang --- diff --git a/Tizen.Applications.Badge/Tizen.Applications/Badge.cs b/Tizen.Applications.Badge/Tizen.Applications/Badge.cs index afa773a..d5e6fff 100755 --- a/Tizen.Applications.Badge/Tizen.Applications/Badge.cs +++ b/Tizen.Applications.Badge/Tizen.Applications/Badge.cs @@ -35,6 +35,7 @@ namespace Tizen.Applications /// /// Property for the count value of the badge. /// + /// 3 public int Count { get @@ -46,6 +47,7 @@ namespace Tizen.Applications /// /// Property for the application ID of the badge. /// + /// 3 public string AppId { get @@ -57,6 +59,7 @@ namespace Tizen.Applications /// /// Property for the flag of 'display'. /// + /// 3 public bool IsDisplay { get diff --git a/Tizen.Applications.Badge/Tizen.Applications/BadgeControl.cs b/Tizen.Applications.Badge/Tizen.Applications/BadgeControl.cs index c94f243..4956efc 100755 --- a/Tizen.Applications.Badge/Tizen.Applications/BadgeControl.cs +++ b/Tizen.Applications.Badge/Tizen.Applications/BadgeControl.cs @@ -30,6 +30,7 @@ namespace Tizen.Applications /// /// Event handler for receiving badge events. /// + /// 3 /// Thrown in case of failed conditions /// Thrown when app does not have privilege to access /// http://tizen.org/privilege/notification @@ -75,6 +76,7 @@ namespace Tizen.Applications /// /// Gets the badge information from application ID. /// + /// 3 /// Application ID /// Thrown when failed because of invalid argument /// Thrown when app does not have privilege to access @@ -103,6 +105,7 @@ namespace Tizen.Applications /// /// Removes the badge information. /// + /// 3 /// Application ID /// Thrown when failed because of invalid argument /// Thrown when app does not have privilege to access @@ -120,6 +123,7 @@ namespace Tizen.Applications /// /// Adds the badge information. /// + /// 3 /// Application ID /// Count value /// True if it should be displayed @@ -149,6 +153,7 @@ namespace Tizen.Applications /// /// Updates the badge information. /// + /// 3 /// Application ID /// Count value /// Thrown when failed because of invalid argument @@ -167,6 +172,7 @@ namespace Tizen.Applications /// /// Updates the badge information. /// + /// 3 /// Application ID /// True if it should be displayed /// Thrown when failed because of invalid argument @@ -185,6 +191,7 @@ namespace Tizen.Applications /// /// Updates the badge information. /// + /// 3 /// Application ID /// Count value /// True if it should be displayed @@ -201,6 +208,7 @@ namespace Tizen.Applications /// /// Gets all badge information. /// + /// 3 /// Thrown when app does not have privilege to access /// Thrown in case of failed conditions /// http://tizen.org/privilege/notification diff --git a/Tizen.Applications.Badge/Tizen.Applications/BadgeEventArgs.cs b/Tizen.Applications.Badge/Tizen.Applications/BadgeEventArgs.cs index 294eb62..2977289 100755 --- a/Tizen.Applications.Badge/Tizen.Applications/BadgeEventArgs.cs +++ b/Tizen.Applications.Badge/Tizen.Applications/BadgeEventArgs.cs @@ -30,6 +30,7 @@ namespace Tizen.Applications /// /// Enumeration for badge action. /// + /// 3 public enum Action : int { /// @@ -51,11 +52,13 @@ namespace Tizen.Applications /// /// Property for Badge object. /// + /// 3 public Badge Badge { get; internal set; } /// /// Property for Action value. /// + /// 3 public Action Reason { get; internal set; } } }