[Multimedia] Added missing comments in Metadata 42/153142/3
authorcoderhyme <jhyo.kim@samsung.com>
Thu, 28 Sep 2017 03:54:55 +0000 (12:54 +0900)
committerhj kim <backto.kim@samsung.com>
Thu, 28 Sep 2017 08:58:38 +0000 (08:58 +0000)
Change-Id: I32f3ff5d5dcfc04063c18f320e347263b2adcde0
Signed-off-by: coderhyme <jhyo.kim@samsung.com>
src/Tizen.Multimedia.Metadata/MetadataEditor/MetadataEditor.cs
src/Tizen.Multimedia.Metadata/MetadataExtractor/Metadata.cs
src/Tizen.Multimedia.Metadata/MetadataExtractor/MetadataExtractor.cs

index 9510cb3..54fbaf9 100755 (executable)
@@ -510,6 +510,12 @@ namespace Tizen.Multimedia
             Dispose(false);
         }
 
+        /// <summary>
+        /// Releases the resources used by the <see cref="MetadataEditor"/> object.
+        /// </summary>
+        /// <param name="disposing">
+        /// true to release both managed and unmanaged resources; false to release only unmanaged resources.
+        /// </param>
         protected virtual void Dispose(bool disposing)
         {
             if (!_disposed)
index e4da5a0..873d33c 100755 (executable)
@@ -90,11 +90,11 @@ namespace Tizen.Multimedia
 
         private Lazy<string> _description;
 
-        public override string ToString()
-        {
-            return _description.Value;
-        }
-
+        /// <summary>
+        /// Returns a string that represents the current object.
+        /// </summary>
+        /// <returns>A string that represents the current object.</returns>
+        public override string ToString() => _description.Value;
     }
 
     /// <summary>
@@ -166,10 +166,11 @@ namespace Tizen.Multimedia
 
         private Lazy<string> _description;
 
-        public override string ToString()
-        {
-            return _description.Value;
-        }
+        /// <summary>
+        /// Returns a string that represents the current object.
+        /// </summary>
+        /// <returns>A string that represents the current object.</returns>
+        public override string ToString() => _description.Value;
     }
 
     /// <summary>
@@ -388,9 +389,10 @@ namespace Tizen.Multimedia
 
         private Lazy<string> _description;
 
-        public override string ToString()
-        {
-            return _description.Value;
-        }
+        /// <summary>
+        /// Returns a string that represents the current object.
+        /// </summary>
+        /// <returns>A string that represents the current object.</returns>
+        public override string ToString() => _description.Value;
     }
 }
index cb5cb5a..7d9a042 100755 (executable)
@@ -273,6 +273,12 @@ namespace Tizen.Multimedia
             Dispose(false);
         }
 
+        /// <summary>
+        /// Releases the resources used by the <see cref="MetadataExtractor"/> object.
+        /// </summary>
+        /// <param name="disposing">
+        /// true to release both managed and unmanaged resources; false to release only unmanaged resources.
+        /// </param>
         protected virtual void Dispose(bool disposing)
         {
             if (!_disposed)