From: Hyunho Kang Date: Wed, 25 Sep 2019 04:48:29 +0000 (+0900) Subject: Fix SuspendedState documentation (#1033) X-Git-Tag: submit/tizen/20190926.005204~1^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6745acb412b9c13d6a5145ec9ae5c4fda5a31021;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Fix SuspendedState documentation (#1033) Signed-off-by: hyunho --- diff --git a/src/Tizen.Applications.Common/Tizen.Applications/SuspendedState.cs b/src/Tizen.Applications.Common/Tizen.Applications/SuspendedState.cs index 77f11a67e..b35dbb82d 100644 --- a/src/Tizen.Applications.Common/Tizen.Applications/SuspendedState.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/SuspendedState.cs @@ -17,18 +17,18 @@ namespace Tizen.Applications { /// - /// Enumeration for suspended state. + /// Enumeration for the suspended state of the application. /// /// 6 public enum SuspendedState { /// - /// Application will enter the suspended state + /// Application will enter the suspended state. /// WillEnter = 0, /// - /// Application did exit from the suspended state + /// Application did exit from the suspended state. /// DidExit = 1 } diff --git a/src/Tizen.Applications.Common/Tizen.Applications/SuspendedStateEventArgs.cs b/src/Tizen.Applications.Common/Tizen.Applications/SuspendedStateEventArgs.cs index 35bd31108..ec1eeda86 100644 --- a/src/Tizen.Applications.Common/Tizen.Applications/SuspendedStateEventArgs.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/SuspendedStateEventArgs.cs @@ -19,13 +19,13 @@ using System; namespace Tizen.Applications { /// - /// The class for the argument of the SuspendedState EventHandler + /// Provides data for the SuspendedState event. /// /// 6 public class SuspendedStateEventArgs : EventArgs { /// - /// Initializes SuspendedStateEventArgs class + /// Initializes a new instance of the SuspendedStateEventArgs class. /// /// The information of the SuspendedState /// 6 @@ -35,7 +35,7 @@ namespace Tizen.Applications } /// - /// The property to get the information of the SuspendedState + /// Gets the suspended state of applications. /// /// 6 public SuspendedState SuspendedState { get; private set; }