add since_tizen tag for API reference 43/137243/1
authorSukHyung, Kang <shine.kang@samsung.com>
Wed, 5 Jul 2017 05:05:54 +0000 (14:05 +0900)
committerSukHyung, Kang <shine.kang@samsung.com>
Wed, 5 Jul 2017 05:05:54 +0000 (14:05 +0900)
Change-Id: I96232670dd661c5b52ca9e68a4c81f456fd1af82
Signed-off-by: SukHyung, Kang <shine.kang@samsung.com>
Tizen.Applications.Badge/Tizen.Applications/Badge.cs
Tizen.Applications.Badge/Tizen.Applications/BadgeControl.cs
Tizen.Applications.Badge/Tizen.Applications/BadgeEventArgs.cs

index afa773a..d5e6fff 100755 (executable)
@@ -35,6 +35,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Property for the count value of the badge.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         public int Count
         {
             get
@@ -46,6 +47,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Property for the application ID of the badge.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         public string AppId
         {
             get
@@ -57,6 +59,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Property for the flag of 'display'.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         public bool IsDisplay
         {
             get
index c94f243..4956efc 100755 (executable)
@@ -30,6 +30,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Event handler for receiving badge events.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         /// <exception cref="InvalidOperationException">Thrown in case of failed conditions</exception>
         /// <exception cref="UnauthorizedAccessException">Thrown when app does not have privilege to access</exception>
         /// <privilege>http://tizen.org/privilege/notification</privilege>
@@ -75,6 +76,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Gets the badge information from application ID.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         /// <param name="appId">Application ID</param>
         /// <exception cref="ArgumentException">Thrown when failed because of invalid argument</exception>
         /// <exception cref="UnauthorizedAccessException">Thrown when app does not have privilege to access</exception>
@@ -103,6 +105,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Removes the badge information.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         /// <param name="appId">Application ID</param>
         /// <exception cref="ArgumentException">Thrown when failed because of invalid argument</exception>
         /// <exception cref="UnauthorizedAccessException">Thrown when app does not have privilege to access</exception>
@@ -120,6 +123,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Adds the badge information.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         /// <param name="appId">Application ID</param>
         /// <param name="count">Count value</param>
         /// <param name="isDisplay">True if it should be displayed</param>
@@ -149,6 +153,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Updates the badge information.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         /// <param name="appId">Application ID</param>
         /// <param name="count">Count value</param>
         /// <exception cref="ArgumentException">Thrown when failed because of invalid argument</exception>
@@ -167,6 +172,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Updates the badge information.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         /// <param name="appId">Application ID</param>
         /// <param name="isDisplay">True if it should be displayed</param>
         /// <exception cref="ArgumentException">Thrown when failed because of invalid argument</exception>
@@ -185,6 +191,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Updates the badge information.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         /// <param name="appId">Application ID</param>
         /// <param name="count">Count value</param>
         /// <param name="isDisplay">True if it should be displayed</param>
@@ -201,6 +208,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Gets all badge information.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         /// <exception cref="UnauthorizedAccessException">Thrown when app does not have privilege to access</exception>
         /// <exception cref="InvalidOperationException">Thrown in case of failed conditions</exception>
         /// <privilege>http://tizen.org/privilege/notification</privilege>
index 294eb62..2977289 100755 (executable)
@@ -30,6 +30,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Enumeration for badge action.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         public enum Action : int
         {
             /// <summary>
@@ -51,11 +52,13 @@ namespace Tizen.Applications
         /// <summary>
         /// Property for Badge object.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         public Badge Badge { get; internal set; }
 
         /// <summary>
         /// Property for Action value.
         /// </summary>
+        /// <since_tizen>3</since_tizen>
         public Action Reason { get; internal set; }
     }
 }