Add C# level description in thumbnail-utility
authorJiyong Min <jiyong.min@samsung.com>
Tue, 4 Jul 2017 02:49:08 +0000 (11:49 +0900)
committerJiyong Min <jiyong.min@samsung.com>
Tue, 4 Jul 2017 04:38:54 +0000 (04:38 +0000)
Change-Id: Ib77b4ef93e43f4f64a516e74705c57efd5f7fd6d
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailData.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailExtractor.cs [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 1a01ecb..3e2018a
@@ -31,16 +31,19 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The thumbnail data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public byte[] Thumbnail { get; }
 
         /// <summary>
         /// The width of the thumbnail.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Width { get; }
 
         /// <summary>
         /// The height of the thumbnail.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Height { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index eea6290..6666c2d
@@ -37,6 +37,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Thumbnail extractor constructor
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// If you need the thumbnail of the specified size, use ThumbnailExtractor(path, width, height) or ThumbnailExtractor(path, size).
         /// </remarks>
@@ -104,6 +105,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Thumbnail extractor constructor
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// If you need the thumbnail of the default size, use ThumbnailExtractor(path). The default size is 320x240. \n
         /// If the set width is not a multiple of 8, it can be changed by inner process. \n
@@ -124,6 +126,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Thumbnail extractor constructor
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// If you need the thumbnail of the default size, use ThumbnailExtractor(path). The default size is 320x240. \n
         /// If the set width is not a multiple of 8, it can be changed by inner process. \n
@@ -143,6 +146,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Extracts the thumbnail for the given media, asynchronously
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// Task for creation of Thumbnail. See <see cref="ThumbnailData"/> details.
         /// </returns>
@@ -207,6 +211,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Thumbnail Utility destructor
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         ~ThumbnailExtractor()
         {
             Dispose(false);