From d5bd49847afcfaa871d82139b6e60b133f4075d4 Mon Sep 17 00:00:00 2001 From: "SukHyung, Kang" Date: Fri, 28 Jul 2017 16:39:38 +0900 Subject: [PATCH] Add Doc for api reference Change-Id: I453dafc1dbf2260e9def9df273102b1a45760c0c Signed-off-by: SukHyung, Kang --- .../Tizen.Applications/AppControlReplyCallback.cs | 8 ++++---- .../Tizen.Applications/DeviceOrientationEventArgs.cs | 6 +++--- .../Tizen.Applications/LocaleChangedEventArgs.cs | 8 ++++---- .../Tizen.Applications/LowBatteryEventArgs.cs | 8 ++++---- .../Tizen.Applications/LowMemoryEventArgs.cs | 8 ++++---- .../Tizen.Applications/RegionFormatChangedEventArgs.cs | 8 ++++---- 6 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/Tizen.Applications.Common/Tizen.Applications/AppControlReplyCallback.cs b/src/Tizen.Applications.Common/Tizen.Applications/AppControlReplyCallback.cs index 501be67..1a9c6c9 100755 --- a/src/Tizen.Applications.Common/Tizen.Applications/AppControlReplyCallback.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/AppControlReplyCallback.cs @@ -17,10 +17,10 @@ namespace Tizen.Applications { /// - /// + /// Reply callback for the launch request /// - /// - /// - /// + /// The AppControl of the launch request that has been sent + /// The AppControl in which the results of the callee are contained + /// The result of the launch request public delegate void AppControlReplyCallback(AppControl launchRequest, AppControl replyRequest, AppControlReplyResult result); } diff --git a/src/Tizen.Applications.Common/Tizen.Applications/DeviceOrientationEventArgs.cs b/src/Tizen.Applications.Common/Tizen.Applications/DeviceOrientationEventArgs.cs index e042e32..750e316 100755 --- a/src/Tizen.Applications.Common/Tizen.Applications/DeviceOrientationEventArgs.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/DeviceOrientationEventArgs.cs @@ -19,21 +19,21 @@ using System; namespace Tizen.Applications { /// - /// The class for event arguments of the DeviceOrientationChanged + /// The class for the argument of the DeviceOrientationChanged EventHandler /// public class DeviceOrientationEventArgs : EventArgs { /// /// Initializes DeviceOrientationEventArgs class /// - /// + /// The information of the DeviceOrientation public DeviceOrientationEventArgs(DeviceOrientation orientation) { DeviceOrientation = orientation; } /// - /// The received DeviceOrientation + /// The property to get the intformation of the DeviceOrientation /// public DeviceOrientation DeviceOrientation { get; private set; } } diff --git a/src/Tizen.Applications.Common/Tizen.Applications/LocaleChangedEventArgs.cs b/src/Tizen.Applications.Common/Tizen.Applications/LocaleChangedEventArgs.cs index 314495d..a1e99ba 100755 --- a/src/Tizen.Applications.Common/Tizen.Applications/LocaleChangedEventArgs.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/LocaleChangedEventArgs.cs @@ -19,22 +19,22 @@ using System; namespace Tizen.Applications { /// - /// + /// The class for the argument of the LocaleChanged EventHandler /// public class LocaleChangedEventArgs : EventArgs { /// - /// + /// Initializes LocaleChangedEventArgs class /// - /// + /// The information of the Locale public LocaleChangedEventArgs(string locale) { Locale = locale; } /// - /// + /// The property to get the intformation of the Locale /// public string Locale { get; private set; } diff --git a/src/Tizen.Applications.Common/Tizen.Applications/LowBatteryEventArgs.cs b/src/Tizen.Applications.Common/Tizen.Applications/LowBatteryEventArgs.cs index e3c45a1..bf0c49a 100755 --- a/src/Tizen.Applications.Common/Tizen.Applications/LowBatteryEventArgs.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/LowBatteryEventArgs.cs @@ -19,21 +19,21 @@ using System; namespace Tizen.Applications { /// - /// + /// The class for the argument of the LowBattery EventHandler /// public class LowBatteryEventArgs : EventArgs { /// - /// + /// Initializes LowBatteryEventArgs class /// - /// + /// The information of the LowBatteryEventArgs public LowBatteryEventArgs(LowBatteryStatus status) { LowBatteryStatus = status; } /// - /// + /// The property to get the intformation of the LowBatteryStatus /// public LowBatteryStatus LowBatteryStatus { get; private set; } } diff --git a/src/Tizen.Applications.Common/Tizen.Applications/LowMemoryEventArgs.cs b/src/Tizen.Applications.Common/Tizen.Applications/LowMemoryEventArgs.cs index 062a4b9..e42fedc 100755 --- a/src/Tizen.Applications.Common/Tizen.Applications/LowMemoryEventArgs.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/LowMemoryEventArgs.cs @@ -19,21 +19,21 @@ using System; namespace Tizen.Applications { /// - /// + /// The class for the argument of the LowMemory EventHandler /// public class LowMemoryEventArgs : EventArgs { /// - /// + /// Initializes LowMemoryEventArgs class /// - /// + /// The information of the LowMemoryStatus public LowMemoryEventArgs(LowMemoryStatus status) { LowMemoryStatus = status; } /// - /// + /// The property to get the intformation of the LowMemoryStatus /// public LowMemoryStatus LowMemoryStatus { get; private set; } } diff --git a/src/Tizen.Applications.Common/Tizen.Applications/RegionFormatChangedEventArgs.cs b/src/Tizen.Applications.Common/Tizen.Applications/RegionFormatChangedEventArgs.cs index 531a8dd..a481093 100755 --- a/src/Tizen.Applications.Common/Tizen.Applications/RegionFormatChangedEventArgs.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/RegionFormatChangedEventArgs.cs @@ -19,22 +19,22 @@ using System; namespace Tizen.Applications { /// - /// + /// The class for the argument of the RegionFormatChanged EventHandler /// public class RegionFormatChangedEventArgs : EventArgs { /// - /// + /// Initializes RegionFormatChangedEventArgs class /// - /// + /// The information of the Region public RegionFormatChangedEventArgs(string region) { Region = region; } /// - /// + /// The property to get the intformation of the Region /// public string Region { get; private set; } } -- 2.7.4