[MediaPlayer] Add descriptions for preparing state (#622)
authornam <36914158+kqjy777@users.noreply.github.com>
Mon, 24 Dec 2018 04:36:39 +0000 (13:36 +0900)
committerGitHub <noreply@github.com>
Mon, 24 Dec 2018 04:36:39 +0000 (13:36 +0900)
* [MediaPlayer] Change descriptions for preparing state

src/Tizen.Multimedia.MediaPlayer/Player/DownloadProgress.cs
src/Tizen.Multimedia.MediaPlayer/Player/Player.cs
src/Tizen.Multimedia.MediaPlayer/Player/PlayerEnums.cs

index 1f7d84e..8a3fa78 100644 (file)
@@ -37,7 +37,7 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// Gets or sets the start position.
+        /// Gets or sets the starting position.
         /// </summary>
         /// <value>The position that downloading started in percentage.</value>
         /// <since_tizen> 3 </since_tizen>
@@ -48,7 +48,7 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// Gets or sets the current position.
+        /// Gets or sets the current position(The end position of received data).
         /// </summary>
         /// <value>The position indicating the current downloading progress in percentage.</value>
         /// <since_tizen> 3 </since_tizen>
index 87cc9eb..4cea9fe 100644 (file)
@@ -314,6 +314,7 @@ namespace Tizen.Multimedia
         /// <exception cref="InvalidOperationException">No source is set.</exception>
         /// <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="PlayerState.Preparing"/>
         /// <since_tizen> 3 </since_tizen>
         public virtual Task PrepareAsync()
         {
index 10d2796..3a635ce 100644 (file)
@@ -132,6 +132,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Preparation in progress.
         /// </summary>
+        /// <remarks>In this state, other methods and properties cannot be set.</remarks>
         /// <seealso cref="Player.PrepareAsync"/>/>
         Preparing,
     }