[MediaPlayer] Fix build warning (#1083)
authorhsgwon <haesu.gwon@samsung.com>
Wed, 16 Oct 2019 08:38:06 +0000 (17:38 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Wed, 16 Oct 2019 08:38:06 +0000 (17:38 +0900)
src/Tizen.Multimedia.MediaPlayer/Player/Player.cs
src/Tizen.Multimedia.MediaPlayer/Player/PlayerEnums.cs

index 36912252274ae5acf01ce57c0b0a0330db9a89cb..331962cd1654d169081d4c7596de3d60bb7973c5 100644 (file)
@@ -414,7 +414,8 @@ namespace Tizen.Multimedia
         /// </summary>
         /// <remarks>
         ///     The most recently used source is reset and is no longer associated with the player. Playback is no longer possible.
-        ///     If you want to use the player again, you have to set a source and call <see cref="PrepareAsync"/> again.
+        ///     If you want to use the player again, you have to set a source and call <see cref="PrepareAsync()"/> or
+        ///     <see cref="PrepareAsync(CancellationToken)"/> again.
         ///     <para>
         ///     The player must be in the <see cref="PlayerState.Ready"/>, <see cref="PlayerState.Playing"/>, or <see cref="PlayerState.Paused"/> state.
         ///     It has no effect if the player is already in the <see cref="PlayerState.Idle"/> state.
@@ -464,7 +465,8 @@ namespace Tizen.Multimedia
         /// </remarks>
         /// <exception cref="ObjectDisposedException">The player has already been disposed of.</exception>
         /// <exception cref="InvalidOperationException">The player is not in the valid state.</exception>
-        /// <seealso cref="PrepareAsync"/>
+        /// <seealso cref="PrepareAsync()"/>
+        /// <seealso cref="PrepareAsync(CancellationToken)"/>
         /// <seealso cref="Stop"/>
         /// <seealso cref="Pause"/>
         /// <seealso cref="PlaybackCompleted"/>
@@ -546,7 +548,8 @@ namespace Tizen.Multimedia
         ///     -or-<br/>
         ///     It is not able to assign the source to the player.
         ///     </exception>
-        /// <seealso cref="PrepareAsync"/>
+        /// <seealso cref="PrepareAsync()"/>
+        /// <seealso cref="PrepareAsync(CancellationToken)"/>
         /// <since_tizen> 3 </since_tizen>
         public void SetSource(MediaSource source)
         {
index 37628deceaf99f8e0280e81a39a5bf5b51069548..ac58ce4d22bd93023da291c7e5edc924b5602ad3 100644 (file)
@@ -14,6 +14,7 @@
  * limitations under the License.
  */
 using System;
+using System.Threading;
 using Tizen.Internals.Errors;
 
 namespace Tizen.Multimedia
@@ -114,7 +115,8 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Prepared.
         /// </summary>
-        /// <seealso cref="Player.PrepareAsync"/>
+        /// <seealso cref="Player.PrepareAsync()"/>
+        /// <seealso cref="Player.PrepareAsync(CancellationToken)"/>
         Ready,
 
         /// <summary>
@@ -133,7 +135,8 @@ namespace Tizen.Multimedia
         /// Preparation in progress.
         /// </summary>
         /// <remarks>In this state, other methods and properties cannot be set.</remarks>
-        /// <seealso cref="Player.PrepareAsync"/>/>
+        /// <seealso cref="Player.PrepareAsync()"/>
+        /// <seealso cref="Player.PrepareAsync(CancellationToken)"/>
         Preparing,
     }