[Multimedia] Fixed wrong formats in the doc-comments. 16/156616/1
authorcoderhyme <jhyo.kim@samsung.com>
Thu, 19 Oct 2017 05:11:01 +0000 (14:11 +0900)
committercoderhyme <jhyo.kim@samsung.com>
Thu, 19 Oct 2017 06:54:25 +0000 (15:54 +0900)
Change-Id: I82e1060bdf23dd0bcfa72747e3a36764d9895d67
Signed-off-by: coderhyme <jhyo.kim@samsung.com>
src/Tizen.Multimedia.Radio/Radio/Radio.cs
src/Tizen.Multimedia.Util/ImageUtil/ImageDecoder.cs
src/Tizen.Multimedia.Util/ImageUtil/ImageEncoder.cs
src/Tizen.Multimedia.Util/ImageUtil/ImageTransform.cs
src/Tizen.Multimedia.Util/ImageUtil/ImageTransformer.cs
src/Tizen.Multimedia.Util/ImageUtil/ImageUtil.cs

index b24ff99..e7bef77 100755 (executable)
@@ -117,7 +117,7 @@ namespace Tizen.Multimedia
         /// </summary>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     <paramref name="value"/> is less than <see cref="Range.Min"/> of <see cref="FrequencyRange"/>.<br/>
-        ///     - or - <br/>
+        ///     -or- <br/>
         ///     <paramref name="value"/> is greater than <see cref="Range.Max"/> of <see cref="FrequencyRange"/>.
         /// </exception>
         public int Frequency
@@ -193,7 +193,7 @@ namespace Tizen.Multimedia
         /// <value>The default is 1.0.</value>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     <paramref name="value"/> is less than zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     <paramref name="value"/> is greater than 1.0.
         /// </exception>
         public float Volume
index b30029e..502e31c 100644 (file)
@@ -94,9 +94,9 @@ namespace Tizen.Multimedia.Util
         /// <exception cref="ArgumentNullException"><paramref name="inputFilePath"/> is null.</exception>
         /// <exception cref="ArgumentException">
         ///     <paramref name="inputFilePath"/> is an empty string.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     <paramref name="inputFilePath"/> is not a image file.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The format of <paramref name="inputFilePath"/> is not <see cref="InputFormat"/>.
         /// </exception>
         /// <exception cref="FileNotFoundException"><paramref name="inputFilePath"/> does not exists.</exception>
@@ -142,7 +142,7 @@ namespace Tizen.Multimedia.Util
         /// <exception cref="ArgumentNullException"><paramref name="inputBuffer"/> is null.</exception>
         /// <exception cref="ArgumentException">
         ///     <paramref name="inputBuffer"/> is an empty array.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The format of <paramref name="inputBuffer"/> is not <see cref="InputFormat"/>.
         /// </exception>
         /// <exception cref="FileFormatException">The format of <paramref name="inputBuffer"/> is not <see cref="InputFormat"/>.</exception>
index b1250b7..2263f2a 100644 (file)
@@ -68,7 +68,7 @@ namespace Tizen.Multimedia.Util
         /// <param name="resolution">The target resolution.</param>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     The width of <paramref name="resolution"/> is less than or equal to zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The height of <paramref name="resolution"/> is less than or equal to zero.
         /// </exception>
         public void SetResolution(Size resolution)
@@ -172,12 +172,12 @@ namespace Tizen.Multimedia.Util
         /// <returns>A task that represents the asynchronous encoding operation.</returns>
         /// <exception cref="ArgumentNullException">
         ///     <paramref name="inputBuffer"/> is null.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     <paramref name="outStream"/> is null.
         /// </exception>
         /// <exception cref="ArgumentException">
         ///     <paramref name="inputBuffer"/> is an empty array.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     <paramref name="outStream"/> is not writable.
         /// </exception>
         /// <exception cref="InvalidOperationException">The resolution is not set.</exception>
@@ -348,7 +348,7 @@ namespace Tizen.Multimedia.Util
         /// <remarks><see cref="ImageEncoder.OutputFormat"/> will be the <see cref="ImageFormat.Jpeg"/>.</remarks>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     <paramref name="quality"/> is less than or equal to 0.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     <paramref name="quality"/> is greater than 100.
         /// </exception>
         public JpegEncoder(int quality) :
@@ -366,7 +366,7 @@ namespace Tizen.Multimedia.Util
         /// </value>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     <paramref name="value"/> is less than or equal to 0.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     <paramref name="value"/> is greater than 100.
         /// </exception>
         public int Quality
@@ -418,12 +418,12 @@ namespace Tizen.Multimedia.Util
         /// <returns>A task that represents the asynchronous encoding operation.</returns>
         /// <exception cref="ArgumentNullException">
         ///     <paramref name="frames"/> is null.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     <paramref name="outStream"/> is null.
         /// </exception>
         /// <exception cref="ArgumentException">
         ///     <paramref name="frames"/> has no element(empty).<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     <paramref name="outStream"/> is not writable.
         /// </exception>
         /// <exception cref="InvalidOperationException">The resolution is not set.</exception>
index 3545d56..d68c82d 100644 (file)
@@ -106,7 +106,7 @@ namespace Tizen.Multimedia.Util
         /// <value>The <see cref="ImageTransform"/> at the specified index.</value>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     index is less than 0.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     index is equal to or greater than Count.
         /// </exception>
         public ImageTransform this[int index]
@@ -202,7 +202,7 @@ namespace Tizen.Multimedia.Util
         /// <param name="index">The zero-based index to remove.</param>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     index is less than 0.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     index is equal to or greater than <see cref="Count"/>.
         /// </exception>
         public void RemoveAt(int index) => _list.RemoveAt(index);
@@ -474,11 +474,11 @@ namespace Tizen.Multimedia.Util
         /// <param name="region">The crop region.</param>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     The X-position of <paramref name="region"/> is less than zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The Y-position of <paramref name="region"/> is less than zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The width of <paramref name="region"/> is less than or equal to zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The height of <paramref name="region"/> is less than or equal to zero.
         /// </exception>
         public CropTransform(Rectangle region)
@@ -491,11 +491,11 @@ namespace Tizen.Multimedia.Util
         /// </summary>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     The X-position of <paramref name="value"/> is less than zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The Y-position of <paramref name="value"/> is less than zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The width of <paramref name="value"/> is less than or equal to zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The height of <paramref name="value"/> is less than or equal to zero.
         /// </exception>
         public Rectangle Region
@@ -551,7 +551,7 @@ namespace Tizen.Multimedia.Util
         /// <param name="size">The size that an image is resized to.</param>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     The width of <paramref name="size"/> is less than or equal to zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The height of <paramref name="size"/> is less than or equal to zero.
         /// </exception>
         public ResizeTransform(Size size)
@@ -564,7 +564,7 @@ namespace Tizen.Multimedia.Util
         /// </summary>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     The width of <paramref name="value"/> is less than or equal to zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     The height of <paramref name="value"/> is less than or equal to zero.
         /// </exception>
         public Size Size
index 305c7a0..13d345d 100644 (file)
@@ -39,7 +39,7 @@ namespace Tizen.Multimedia.Util
         /// <returns>A task that represents the asynchronous transforming operation.</returns>
         /// <exception cref="ArgumentNullException">
         ///     <paramref name="source"/> is null.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     <paramref name="item"/> is null.
         /// </exception>
         /// <exception cref="ObjectDisposedException">The <see cref="ImageTransformer"/> has already been disposed of.</exception>
index 9f6636b..9d35b91 100644 (file)
@@ -53,7 +53,7 @@ namespace Tizen.Multimedia.Util
         /// <returns>The buffer size.</returns>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     width of <paramref name="resolution"/> is less than or equal to zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     height of <paramref name="resolution"/> is less than or equal to zero.
         /// </exception>
         /// <exception cref="ArgumentException"><paramref name="colorSpace"/> is invalid.</exception>
@@ -92,7 +92,7 @@ namespace Tizen.Multimedia.Util
         /// <exception cref="ArgumentException"><paramref name="buffer"/> is empty.</exception>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     width of <paramref name="size"/> is less than or equal to zero.<br/>
-        ///     - or -<br/>
+        ///     -or-<br/>
         ///     height of <paramref name="size"/> is less than or equal to zero.
         /// </exception>
         public static Color GetColor(byte[] buffer, Size size)