Update description for return value
authorMinje Ahn <minje.ahn@samsung.com>
Wed, 8 Mar 2017 07:37:13 +0000 (16:37 +0900)
committerMinje Ahn <minje.ahn@samsung.com>
Wed, 8 Mar 2017 08:02:03 +0000 (17:02 +0900)
Sync with media-content in capi

Change-Id: Ie16a9be0a8dfa38e89ae51f226cd179832f32b41
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
packaging/csapi-media-content.spec
src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/AudioInformation.cs
src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/ImageInformation.cs
src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/MediaInformation.cs
src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/VideoInformation.cs

index e4361d3..186f474 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       csapi-media-content
 Summary:    Tizen Media Content API for C#
-Version:    1.0.7
+Version:    1.0.8
 Release:    1
 Group:      Development/Libraries
 License:    Apache-2.0
index b6a2cdd..54b614e 100755 (executable)
@@ -37,7 +37,7 @@ namespace Tizen.Content.MediaContent
         private readonly Interop.AudioInformation.SafeAudioInformationHandle _handle;
 
         /// <summary>
-        ///  Gets the tag ID for the media.
+        ///  Gets the ID of the media.
         /// </summary>
         public string MediaId
         {
@@ -60,7 +60,6 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the album name.
-        ///  If the value is an empty string, the property returns "Unknown".
         ///  If the media content has no album info, the property returns empty string.
         /// </summary>
         public string Album
@@ -84,7 +83,6 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the artist name.
-        ///  If the value is an empty string, the property returns "Unknown".
         ///  If the media content has no album info, the property returns empty string.
         /// </summary>
         public string Artist
@@ -108,7 +106,6 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the album artist name.
-        ///  If the value is an empty string, the property returns "Unknown".
         ///  If the media content has no album info, the property returns empty string.
         /// </summary>
         public string AlbumArtist
@@ -131,8 +128,7 @@ namespace Tizen.Content.MediaContent
         }
 
         /// <summary>
-        ///  Gets the genre name.
-        ///  If the value is an empty string, the property returns "Unknown".
+        ///  Gets the genre.
         ///  If the media content has no album info, the property returns empty string.
         /// </summary>
         public string Genre
@@ -180,7 +176,6 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the year.
-        ///  If the value is an empty string, the property returns "Unknown".
         ///  If the media content has no album info, the property returns empty string.
         /// </summary>
         public string Year
@@ -225,8 +220,8 @@ namespace Tizen.Content.MediaContent
         }
 
         /// <summary>
-        ///  Gets the copyright notice.
-        ///  If the media content has no copyright info, the property returns empty string.
+        ///  Gets the copyright.
+        ///  If the media content has no copyright information, the property returns empty string.
         /// </summary>
         public string Copyright
         {
@@ -249,7 +244,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the track number.
-        ///  If the value is an empty string, the property returns "Unknown".
+        ///  If the media content has no track information, the property returns empty string.
         /// </summary>
         public string TrackNumber
         {
index 3940325..209bc78 100755 (executable)
@@ -33,7 +33,7 @@ namespace Tizen.Content.MediaContent
         private readonly Interop.ImageInformation.SafeImageInformationHandle _handle;
 
         /// <summary>
-        ///  Gets the tag ID for the image.
+        ///  Gets the id of the media.
         /// </summary>
         public string MediaId
         {
@@ -117,7 +117,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.ImageInformation.GetDateTaken(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
@@ -128,7 +128,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         /// Gets the burst shot ID.
-        /// If BurstId is empty, this is not a burst shot
+        /// If BurstId is null, this is not a burst shot
         /// </summary>
         public string BurstId
         {
@@ -140,7 +140,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.ImageInformation.GetBurstId(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
@@ -162,7 +162,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.ImageInformation.GetExposureTime(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
@@ -214,7 +214,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.ImageInformation.GetModel(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
index b801bf5..091c3bb 100755 (executable)
@@ -151,7 +151,7 @@ namespace Tizen.Content.MediaContent
         }
 
         /// <summary>
-        ///  Gets the tag ID for the media.
+        ///  Gets the ID of the media.
         /// </summary>
         public virtual string MediaId
         {
@@ -443,8 +443,7 @@ namespace Tizen.Content.MediaContent
         }
 
         /// <summary>
-        /// Weather of media.
-        /// Dafault is empty string.
+        /// Weather information of media.
         /// </summary>
         public string Weather
         {
@@ -456,7 +455,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.MediaInformation.GetWeather(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
@@ -523,7 +522,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.MediaInformation.GetAuthor(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
@@ -550,7 +549,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.MediaInformation.GetProvider(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
@@ -577,7 +576,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.MediaInformation.GetContentName(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
@@ -593,6 +592,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         /// Gets the title of media.
+        /// If the media content has no title, the property returns empty string.
         /// </summary>
         public string Title
         {
@@ -626,7 +626,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.MediaInformation.GetCategory(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
@@ -653,7 +653,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.MediaInformation.GetLocationTag(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
@@ -680,7 +680,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.MediaInformation.GetAgeRating(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
@@ -707,7 +707,7 @@ namespace Tizen.Content.MediaContent
                     MediaContentValidator.ThrowIfError(
                         Interop.MediaInformation.GetKeyword(_handle, out val), "Failed to get value");
 
-                    return MediaContentValidator.CheckString(Marshal.PtrToStringAnsi(val));
+                    return Marshal.PtrToStringAnsi(val);
                 }
                 finally
                 {
index aadcb1c..1cbf603 100755 (executable)
@@ -31,7 +31,7 @@ namespace Tizen.Content.MediaContent
     public class VideoInformation : MediaInformation
     {
         /// <summary>
-        ///  Gets the tag ID for the media.
+        ///  Gets the ID of the media.
         /// </summary>
         public string MediaId
         {
@@ -54,7 +54,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the album name.
-        ///  If the value is an empty string, the property returns "Unknown".
+        ///  If the media content has no album information, the property returns empty string.
         /// </summary>
         public string Album
         {
@@ -77,7 +77,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the artist name.
-        ///  If the value is an empty string, the property returns "Unknown".
+        ///  If the media content has no artist information, the property returns empty string.
         /// </summary>
         public string Artist
         {
@@ -100,7 +100,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the album artist name.
-        ///  If the value is an empty string, the property returns "Unknown".
+        ///  If the media content has no album artist information, the property returns empty string.
         /// </summary>
         public string AlbumArtist
         {
@@ -123,7 +123,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the genre name.
-        ///  If the value is an empty string, the property returns "Unknown".
+        ///  If the media content has no genre information, the property returns empty string.
         /// </summary>
         public string Genre
         {
@@ -146,7 +146,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the composer name.
-        ///  If the value is an empty string, the property returns "Unknown".
+        ///  If the media content has no composer information, the property returns empty string.
         /// </summary>
         public string Composer
         {
@@ -169,7 +169,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the year.
-        ///  If the value is an empty string, the property returns "Unknown".
+        ///  If the media content has no year information, the property returns empty string.
         /// </summary>
         public string Year
         {
@@ -214,7 +214,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the copyright notice.
-        ///  If the value is an empty string, the property returns "Unknown".
+        ///  If the media content has no copyright information, the property returns empty string.
         /// </summary>
         public string Copyright
         {
@@ -237,7 +237,7 @@ namespace Tizen.Content.MediaContent
 
         /// <summary>
         ///  Gets the track number.
-        ///  If the value is an empty string, the property returns "Unknown".
+        ///  If the media content has no track information, the property returns empty string.
         /// </summary>
         public string TrackNumber
         {