From 5cec011718c4f1cd38a5bd3615c534a4eedf5f62 Mon Sep 17 00:00:00 2001 From: Editor Lionbridge Date: Fri, 11 Aug 2017 19:34:21 +0530 Subject: [PATCH] Review media-key API cs files Change-Id: Iad103400e12f9d29b22fb61cd35265de66bf1b6d --- src/Tizen.System.MediaKey/Tizen.System/MediaKey.cs | 50 +++++++++++----------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/src/Tizen.System.MediaKey/Tizen.System/MediaKey.cs b/src/Tizen.System.MediaKey/Tizen.System/MediaKey.cs index abe96b7..38a69c5 100755 --- a/src/Tizen.System.MediaKey/Tizen.System/MediaKey.cs +++ b/src/Tizen.System.MediaKey/Tizen.System/MediaKey.cs @@ -19,104 +19,104 @@ using System; namespace Tizen.System { /// - /// Class for event arguments of the media key. + /// The class for event arguments of the media key. /// public class MediaKeyEventArgs : EventArgs { /// - /// Enumeration for Key value. + /// Enumeration for the key value. /// - /// 3 + /// 3 public enum KeyValue { /// - /// Play key. + /// The play key. /// Play, /// - /// Stop key. + /// The stop key. /// Stop, /// - /// Pause key. + /// The pause key. /// Pause, /// - /// Previous key. + /// The previous key. /// Previous, /// - /// Next key. + /// The next key. /// Next, /// - /// Fast forward key. + /// The fast forward key. /// FastForward, /// - /// Rewind key. + /// The rewind key. /// Rewind, /// - /// Play-pause key. + /// The play-pause key. /// PlayPause, /// - /// Media key for earjack. + /// The media key for the earjack. /// Media, /// - /// Unknown key. + /// The unknown key. /// Unknown } /// - /// Enumeration for Key status. + /// Enumeration for the key status. /// - /// 3 + /// 3 public enum KeyStatus { /// - /// Pressed status. + /// The pressed status. /// Pressed, /// - /// Released status. + /// The released status. /// Released, /// - /// Unknown status. + /// The unknown status. /// Unknown } /// - /// Key value. + /// The key value. /// - /// 3 + /// 3 public KeyValue Value { get; internal set; } /// - /// Key status. + /// The key status. /// - /// 3 + /// 3 public KeyStatus Status { get; internal set; } } /// - /// Class for receiving events of media keys. + /// The class for receiving events of media keys. /// public static class MediaKey { @@ -135,8 +135,8 @@ namespace Tizen.System /// /// Adds or removes events for all media keys. /// - /// 3 - /// Failed to reserve or release key. + /// 3 + /// Failed to reserve or release the key. public static event EventHandler Event { add -- 2.7.4