X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Content.MediaContent%2FTizen.Content.MediaContent%2FImageInfo.cs;h=768dce04a1d9c02243ee5f155da40515a98c1527;hb=479584754c5e236c1fffa84164452535e281e0ce;hp=8562b23b540cc319ea7f9102ee25e3288889d018;hpb=5c5de1f44adc3387513454aa2149d2601abd5a74;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/ImageInfo.cs b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/ImageInfo.cs index 8562b23..768dce0 100644 --- a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/ImageInfo.cs +++ b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/ImageInfo.cs @@ -22,6 +22,7 @@ namespace Tizen.Content.MediaContent /// /// Represents the image media stored in the device. /// + /// 4 public class ImageInfo : MediaInfo { internal ImageInfo(Interop.MediaInfoHandle handle) : base(handle) @@ -58,48 +59,60 @@ namespace Tizen.Content.MediaContent /// Gets the image width in pixels. /// /// The image width in pixels. + /// 4 public int Width { get; } /// /// Gets the image height in pixels. /// /// The image height in pixels. + /// 4 public int Height { get; } /// /// Gets the orientation of image. /// /// The orientation of image. + /// 4 public Orientation Orientation { get; } /// /// Gets the date of the creation time as a formatted string. /// /// The date of the creation time as a formatted string. + /// 4 public string DateTaken { get; } /// /// Gets the exposure time from EXIF. /// /// The exposure time from EXIF. + /// 4 + [Obsolete("Deprecated since API11; Will be removed in API13.")] public string ExposureTime { get; } /// /// Gets the FNumber from EXIF. /// /// The FNumber from EXIF. + /// 4 + [Obsolete("Deprecated since API11; Will be removed in API13.")] public double FNumber { get; } /// /// Gets the ISO from EXIF. /// /// The iso from EXIF. + /// 4 + [Obsolete("Deprecated since API11; Will be removed in API13.")] public int Iso { get; } /// /// Gets the model from EXIF. /// /// The model from EXIF. + /// 4 + [Obsolete("Deprecated since API11; Will be removed in API13.")] public string Model { get; } } }