Fix SuspendedState documentation (#1033)
authorHyunho Kang <hhstark.kang@samsung.com>
Wed, 25 Sep 2019 04:48:29 +0000 (13:48 +0900)
committerpjh9216 <jh9216.park@samsung.com>
Wed, 25 Sep 2019 04:48:29 +0000 (13:48 +0900)
Signed-off-by: hyunho <hhstark.kang@samsung.com>
src/Tizen.Applications.Common/Tizen.Applications/SuspendedState.cs
src/Tizen.Applications.Common/Tizen.Applications/SuspendedStateEventArgs.cs

index 77f11a6..b35dbb8 100644 (file)
 namespace Tizen.Applications
 {
     /// <summary>
-    /// Enumeration for suspended state.
+    /// Enumeration for the suspended state of the application.
     /// </summary>
     /// <since_tizen> 6 </since_tizen>
     public enum SuspendedState
     {
         /// <summary>
-        /// Application will enter the suspended state
+        /// Application will enter the suspended state.
         /// </summary>
         WillEnter = 0,
 
         /// <summary>
-        /// Application did exit from the suspended state
+        /// Application did exit from the suspended state.
         /// </summary>
         DidExit = 1
     }
index 35bd311..ec1eeda 100644 (file)
@@ -19,13 +19,13 @@ using System;
 namespace Tizen.Applications
 {
     /// <summary>
-    /// The class for the argument of the SuspendedState EventHandler
+    ///  Provides data for the SuspendedState event.
     /// </summary>
     /// <since_tizen> 6 </since_tizen>
     public class SuspendedStateEventArgs : EventArgs
     {
         /// <summary>
-        /// Initializes SuspendedStateEventArgs class
+        /// Initializes a new instance of the SuspendedStateEventArgs class.
         /// </summary>
         /// <param name="state">The information of the SuspendedState</param>
         /// <since_tizen> 6 </since_tizen>
@@ -35,7 +35,7 @@ namespace Tizen.Applications
         }
 
         /// <summary>
-        /// The property to get the information of the SuspendedState
+        /// Gets the suspended state of applications.
         /// </summary>
         /// <since_tizen> 6 </since_tizen>
         public SuspendedState SuspendedState { get; private set; }