Corrected wrong documentation tag.
authorcoderhyme <jhyo.kim@samsung.com>
Tue, 8 Aug 2017 22:33:12 +0000 (07:33 +0900)
committerSeungbae Shin <seungbae.shin@samsung.com>
Wed, 9 Aug 2017 02:26:22 +0000 (02:26 +0000)
Method should have returns tag, not value tag.

Change-Id: Ic898905fa593e3f23a54156774f8338b61e5c4fe
Signed-off-by: coderhyme <jhyo.kim@samsung.com>
src/Tizen.Multimedia.Radio/Radio/RadioInterruptedEventArgs.cs
src/Tizen.Multimedia.Radio/Radio/ScanUpdatedEventArgs.cs
src/Tizen.Multimedia.Vision/MediaVision/Barcode.cs
src/Tizen.Multimedia.Vision/MediaVision/Quadrangle.cs
src/Tizen.Multimedia/Common/Point.cs
src/Tizen.Multimedia/Common/Range.cs
src/Tizen.Multimedia/Common/Rectangle.cs
src/Tizen.Multimedia/Common/Size.cs

index 8138546..84e4340 100644 (file)
@@ -37,7 +37,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Returns a string that represents the current object.
         /// </summary>
-        /// <value>A string that represents the current object.</value>
+        /// <returns>A string that represents the current object.</returns>
         public override string ToString() => $"Reason={ Reason.ToString() }";
     }
 }
index 6be5c55..174f670 100644 (file)
@@ -36,7 +36,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Returns a string that represents the current object.
         /// </summary>
-        /// <value>A string that represents the current object.</value>
+        /// <returns>A string that represents the current object.</returns>
         public override string ToString()
         {
             return $"Frequency={ Frequency.ToString() }";
index 9e16d8b..6735533 100755 (executable)
@@ -54,7 +54,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Returns a string that represents the current object.
         /// </summary>
-        /// <value>A string that represents the current object.</value>
+        /// <returns>A string that represents the current object.</returns>
         public override string ToString() =>
             $"Region={Region}, Message={Message}, Type={Type.ToString()}";
     }
index 64f1175..577b5cd 100755 (executable)
@@ -51,7 +51,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Returns a string that represents the current object.
         /// </summary>
-        /// <value>A string that represents the current object.</value>
+        /// <returns>A string that represents the current object.</returns>
         public override string ToString() =>
             $"[{{{Points[0].ToString()}}}, {{{Points[1].ToString()}}}, {{{Points[2].ToString()}}}, {{{Points[3].ToString()}}}]";
     }
index 6b80ded..07357b5 100644 (file)
@@ -56,13 +56,13 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Returns a string that represents the current object.
         /// </summary>
-        /// <value>A string that represents the current object.</value>
+        /// <returns>A string that represents the current object.</returns>
         public override string ToString() => $"X={X.ToString()}, Y={Y.ToString()}";
 
         /// <summary>
         /// Gets the hash code for this instance of <see cref="Point"/>.
         /// </summary>
-        /// <value>The hash code for this instance of <see cref="Point"/>.</value>
+        /// <returns>The hash code for this instance of <see cref="Point"/>.</returns>
         public override int GetHashCode()
         {
             return new { X, Y }.GetHashCode();
index 6f0de67..a1fe5e7 100644 (file)
@@ -75,13 +75,13 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Returns a string that represents the current object.
         /// </summary>
-        /// <value>A string that represents the current object.</value>
+        /// <returns>A string that represents the current object.</returns>
         public override string ToString() => $"Min={Min.ToString()}, Max={Max.ToString()}";
 
         /// <summary>
         /// Gets the hash code for this instance of <see cref="Range"/>.
         /// </summary>
-        /// <value>The hash code for this instance of <see cref="Range"/>.</value>
+        /// <returns>The hash code for this instance of <see cref="Range"/>.</returns>
         public override int GetHashCode()
         {
             return new { Min, Max }.GetHashCode();
index bae7862..8f37ee1 100644 (file)
@@ -127,13 +127,13 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Returns a string that represents the current object.
         /// </summary>
-        /// <value>A string that represents the current object.</value>
+        /// <returns>A string that represents the current object.</returns>
         public override string ToString() => $"{_location.ToString()}, {_size.ToString()}";
 
         /// <summary>
         /// Gets the hash code for this instance of <see cref="Rectangle"/>.
         /// </summary>
-        /// <value>The hash code for this instance of <see cref="Rectangle"/>.</value>
+        /// <returns>The hash code for this instance of <see cref="Rectangle"/>.</returns>
         public override int GetHashCode()
         {
             return new { Location, Size }.GetHashCode();
index 6c16b11..2ccf856 100644 (file)
@@ -55,13 +55,13 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Returns a string that represents the current object.
         /// </summary>
-        /// <value>A string that represents the current object.</value>
+        /// <returns>A string that represents the current object.</returns>
         public override string ToString() => $"Width={ Width.ToString() }, Height={ Height.ToString() }";
 
         /// <summary>
         /// Gets the hash code for this instance of <see cref="Size"/>.
         /// </summary>
-        /// <value>The hash code for this instance of <see cref="Size"/>.</value>
+        /// <returns>The hash code for this instance of <see cref="Size"/>.</returns>
         public override int GetHashCode()
         {
             return new { Width, Height }.GetHashCode();