[Multimedia] Fixed comments errors in Recorder and Remoting 44/153144/1
authorcoderhyme <jhyo.kim@samsung.com>
Thu, 28 Sep 2017 04:02:14 +0000 (13:02 +0900)
committercoderhyme <jhyo.kim@samsung.com>
Thu, 28 Sep 2017 04:02:14 +0000 (13:02 +0900)
Change-Id: I272963a44f115edbf3267aa2277097bb4f1f76bb
Signed-off-by: coderhyme <jhyo.kim@samsung.com>
src/Tizen.Multimedia.Recorder/Recorder/VideoRecorder.cs
src/Tizen.Multimedia.Remoting/MediaController/MediaControlServer.cs
src/Tizen.Multimedia.Remoting/MediaController/RepeatModeUpdatedEventArgs.cs
src/Tizen.Multimedia.Remoting/ScreenMirroring/ScreenMirroring.cs

index 23b9a83..f97d1ca 100755 (executable)
@@ -294,10 +294,10 @@ namespace Tizen.Multimedia
         /// To set, the recorder must be in the <see cref="RecorderState.Idle"/> or the <see cref="RecorderState.Ready"/> state.
         /// </remarks>
         /// <exception cref="ArgumentOutOfRangeException">Width or height of <paramref name="value"/> is less than or equal to zero.</exception>
-        /// <exception cref="NotSupportedException"><paramref name="value"> is not supported.</exception>
+        /// <exception cref="NotSupportedException"><paramref name="value"/> is not supported.</exception>
         /// <exception cref="InvalidOperationException">The recorder is not in the valid state.</exception>
         /// <exception cref="ObjectDisposedException">The recorder already has been disposed of.</exception>
-        /// <seealso cref="Recorder.GetSupportedVideoResolutions(CameraDevice)"/>
+        /// <seealso cref="VideoRecorder.GetSupportedVideoResolutions(CameraDevice)"/>
         public Size VideoResolution
         {
             get
index c4909bb..b8c0dbe 100644 (file)
@@ -238,7 +238,7 @@ namespace Tizen.Multimedia.Remoting
         ///     -or-\n
         ///     An internal error occurs.
         /// </exception>
-        /// <exception cref="ArgumentException"/><paramref name="mode"/> is invalid.</exception>
+        /// <exception cref="ArgumentException"><paramref name="mode"/> is invalid.</exception>
         public static void SetRepeatMode(MediaControlRepeatMode mode)
         {
             ValidationUtil.ValidateEnum(typeof(MediaControlRepeatMode), mode, nameof(mode));
index f0fecf3..b9bb852 100755 (executable)
@@ -27,7 +27,7 @@ namespace Tizen.Multimedia.Remoting
         /// Initializes a new instance of the <see cref="RepeatModeUpdatedEventArgs"/> class.
         /// </summary>
         /// <param name="mode">A value indicating the updated repeat mode.</param>
-        /// <exception cref="ArgumentException"/><paramref name="mode"/> is invalid.</exception>
+        /// <exception cref="ArgumentException"><paramref name="mode"/> is invalid.</exception>
         public RepeatModeUpdatedEventArgs(MediaControlRepeatMode mode)
         {
             ValidationUtil.ValidateEnum(typeof(MediaControlRepeatMode), mode, nameof(mode));
index 6f08ffb..7badfec 100755 (executable)
@@ -427,7 +427,7 @@ namespace Tizen.Multimedia.Remoting
         /// <remarks>
         /// Call <see cref="Dispose()"/> when you are finished using the <see cref="ScreenMirroring"/>.
         /// The <see cref="Dispose()"/> method leaves the <see cref="ScreenMirroring"/> in an unusable
-        /// state. After calling <see cref="Dispose"()/>, you must release all references to the
+        /// state. After calling <see cref="Dispose()"/>, you must release all references to the
         /// <see cref="ScreenMirroring"/> so the garbage collector can reclaim the memory that the
         /// <see cref="ScreenMirroring"/> was occupying.
         /// </remarks>