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 77f11a67e692f08932fede3c78c35d5aaf3c96d8..b35dbb82dbc5178d5c86ee8e3338d02d2d4dcf1e 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 35bd31108eb087341ba30fcce71ccdb5683c7375..ec1eeda8631f06bb11c816c863ba0379815aed9b 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; }