[MediaController] Add new APIs for sending command and its callback (#396)
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.Remoting / MediaController / PlaybackCommandReceivedEventArgs.cs
index 7d7c3e1..a3e8b6d 100644 (file)
@@ -21,6 +21,8 @@ namespace Tizen.Multimedia.Remoting
     /// <summary>
     /// Provides data for the <see cref="MediaControlServer.PlaybackCommandReceived"/> event.
     /// </summary>
+    /// <since_tizen> 4 </since_tizen>
+    [Obsolete("Please do not use! This will be deprecated. Please use PlaybackActionCommandReceived instead.")]
     public class PlaybackCommandReceivedEventArgs : EventArgs
     {
         /// <summary>
@@ -30,6 +32,7 @@ namespace Tizen.Multimedia.Remoting
         /// <param name="command">The playback command.</param>
         /// <exception cref="ArgumentNullException"><paramref name="clientAppId"/> is null.</exception>
         /// <exception cref="ArgumentException"><paramref name="command"/> is invalid.</exception>
+        /// <since_tizen> 4 </since_tizen>
         public PlaybackCommandReceivedEventArgs(string clientAppId, MediaControlPlaybackCommand command)
         {
             if (clientAppId == null)
@@ -47,12 +50,14 @@ namespace Tizen.Multimedia.Remoting
         /// Gets the application id of the client that sent command.
         /// </summary>
         /// <value>The client application id.</value>
+        /// <since_tizen> 4 </since_tizen>
         public string ClientAppId { get; }
 
         /// <summary>
         /// Gets the command.
         /// </summary>
         /// <value>The <see cref="MediaControlPlaybackCommand"/>.</value>
+        /// <since_tizen> 4 </since_tizen>
         public MediaControlPlaybackCommand Command { get; }
     }
 }
\ No newline at end of file