[Camera] Add public API/Propertyes level tag
authorHaesu Gwon <haesu.gwon@samsung.com>
Tue, 4 Jul 2017 05:52:19 +0000 (14:52 +0900)
committerHaesu Gwon <haesu.gwon@samsung.com>
Fri, 7 Jul 2017 01:50:41 +0000 (01:50 +0000)
+ Add missing comments

Change-Id: I874d3d8dfbacd5a6d2b35c6a80f8f217d814f78b
Signed-off-by: Haesu Gwon <haesu.gwon@samsung.com>
24 files changed:
src/Tizen.Multimedia.Camera/Camera/Camera.cs
src/Tizen.Multimedia.Camera/Camera/CameraCapturingEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/CameraDeviceStateChangedEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/CameraDisplaySettings.cs
src/Tizen.Multimedia.Camera/Camera/CameraEnums.cs
src/Tizen.Multimedia.Camera/Camera/CameraErrorOccurredEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/CameraFeatures.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/CameraFocusStateChangedEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/CameraInterruptedEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/CameraSettings.cs
src/Tizen.Multimedia.Camera/Camera/CameraStateChangedEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/DoublePlane.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/EncodedPlane.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/FaceDetectedEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/FaceDetectionData.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/HdrCaptureProgressEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/IPreviewPlane.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/ImageData.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/Location.cs
src/Tizen.Multimedia.Camera/Camera/MediaPacketPreviewEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/PreviewData.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/PreviewEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/SinglePlane.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/TriplePlane.cs [changed mode: 0644->0755]

index 7b4014b..d7b438b 100755 (executable)
@@ -48,6 +48,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Initializes a new instance of the <see cref="Camera"/> Class.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="device">The camera device to access</param>
         public Camera(CameraDevice device)
         {
@@ -79,10 +80,11 @@ namespace Tizen.Multimedia
             return _handle;
         }
 
-#region Dispose support
+        #region Dispose support
         /// <summary>
         /// Release any unmanaged resources used by this object.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
@@ -137,42 +139,48 @@ namespace Tizen.Multimedia
         {
             _state = state;
         }
-#endregion Check camera state
+        #endregion Check camera state
 
-#region EventHandlers
+        #region EventHandlers
         /// <summary>
         /// Event that occurs when an camera is interrupted by policy.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler<CameraInterruptedEventArgs> Interrupted;
         private Native.InterruptedCallback _interruptedCallback;
 
         /// <summary>
         /// Event that occurs when there is an asynchronous error.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler<CameraErrorOccurredEventArgs> ErrorOccurred;
         private Native.ErrorCallback _errorCallback;
 
         /// <summary>
         /// Event that occurs when the auto focus state is changed.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler<CameraFocusStateChangedEventArgs> FocusStateChanged;
         private Native.FocusStateChangedCallback _focusStateChangedCallback;
 
         /// <summary>
         /// Event that occurs when a face is detected in preview frame.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler<FaceDetectedEventArgs> FaceDetected;
         private Native.FaceDetectedCallback _faceDetectedCallback;
 
         /// <summary>
         /// Event that occurs during capture of image.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler<CameraCapturingEventArgs> Capturing;
         private Native.CapturingCallback _capturingCallback;
 
         /// <summary>
         /// Event that occurs after the capture of the image.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler<EventArgs> CaptureCompleted;
         private Native.CaptureCompletedCallback _captureCompletedCallback;
 
@@ -180,12 +188,14 @@ namespace Tizen.Multimedia
         /// Event that occurs when there is change in HDR capture progress.
         /// Check whether HdrCapture feature is supported or not before add this EventHandler.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler<HdrCaptureProgressEventArgs> HdrCaptureProgress;
         private Native.HdrCaptureProgressCallback _hdrCaptureProgressCallback;
 
         /// <summary>
         /// Event that occurs when camera state is changed.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler<CameraStateChangedEventArgs> StateChanged;
         private Native.StateChangedCallback _stateChangedCallback;
 
@@ -199,6 +209,7 @@ namespace Tizen.Multimedia
         /// User doesn't need to create camera instance.
         /// This static EventHandler calls platform function every time because each callback function have to remain its own callbackId.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="callback">Callback of type <see cref="Native.DeviceStateChangedCallback"/>.</param>
         /// <param name="callbackId">The Id of registered callback.</param>
         /// <exception cref="InvalidOperationException">In case of any invalid operations</exception>
@@ -259,6 +270,7 @@ namespace Tizen.Multimedia
         /// Event that occurs once per frame when previewing.
         /// Preview callback is registered when user add callback explicitly to avoid useless P/Invoke.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler<PreviewEventArgs> Preview
         {
             add
@@ -300,6 +312,7 @@ namespace Tizen.Multimedia
         /// Event that occurs once per frame when previewing.
         /// Preview callback is registered when user add callback explicitly to avoid useless P/Invoke.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler<MediaPacketPreviewEventArgs> MediaPacketPreview
         {
             add
@@ -330,24 +343,27 @@ namespace Tizen.Multimedia
                 }
             }
         }
-    #endregion MediaPacketPreview EventHandler
+        #endregion MediaPacketPreview EventHandler
 
-#endregion EventHandlers
+        #endregion EventHandlers
 
-#region Properties
+        #region Properties
         /// <summary>
         /// Get/Set the various camera settings.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraSettings Setting { get; }
 
         /// <summary>
         /// Gets the various camera features.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraFeatures Feature { get; }
 
         /// <summary>
         /// Get/set various camera display properties.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraDisplaySettings DisplaySettings{ get; }
 
         private Display _display;
@@ -379,6 +395,7 @@ namespace Tizen.Multimedia
         /// Sets or gets the display type and handle to show preview images.
         /// The camera must be in the <see cref="CameraState.Created"/> state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// This must be set before StartPreview() method.
         /// In Custom ROI display mode, DisplayRoiArea property must be set before calling this method.
@@ -426,6 +443,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the state of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value> None, Created, Preview, Capturing, Captured </value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraState State
@@ -447,6 +465,7 @@ namespace Tizen.Multimedia
         /// If the hint is set to true, the display will be reused when the camera device is changed with
         /// ChangeDevice method.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ArgumentException">In case of invalid parameters.</exception>
         /// <exception cref="InvalidOperationException">Invalid state.</exception>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
@@ -476,6 +495,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the facing direction of camera module.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraFacingDirection"/> that specifies the facing direction of camera device.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraFacingDirection Direction
@@ -496,6 +516,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the camera device count.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>This returns 2, if the device supports primary and secondary cameras.
         /// Otherwise 1, if the device only supports primary camera.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
@@ -519,6 +540,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Changes the camera device.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="device">The hardware camera to access.</param>
         /// <remarks>
         /// If display reuse is set using <see cref="DisplayReuseHint"/>
@@ -541,6 +563,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the device state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="device">The device to get state.</param>
         /// <returns>Returns the state of camera device</returns>
         /// <exception cref="ArgumentException">In case of invalid parameters.</exception>
@@ -559,6 +582,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the flash state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="device">The device to get state.</param>
         /// <returns>Returns the flash state of camera device</returns>
         /// <exception cref="ArgumentException">In case of invalid parameters.</exception>
@@ -583,6 +607,7 @@ namespace Tizen.Multimedia
         /// before using this method.
         /// The camera must be in the <see cref="CameraState.Created"/> or <see cref="CameraState.Captured"/> state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>
         /// http://tizen.org/privilege/camera
         /// </privilege>
@@ -605,6 +630,7 @@ namespace Tizen.Multimedia
         /// Stops capturing and drawing preview frames on the screen.
         /// The camera must be in the <see cref="CameraState.Preview"/> state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>
         /// http://tizen.org/privilege/camera
         /// </privilege>
@@ -628,6 +654,7 @@ namespace Tizen.Multimedia
         /// and for completed using <see cref="CaptureCompleted"/> before calling this method.
         /// The camera must be in the <see cref="CameraState.Preview"/> state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>
         /// http://tizen.org/privilege/camera
         /// </privilege>
@@ -656,6 +683,7 @@ namespace Tizen.Multimedia
         /// and for completed using <see cref="CaptureCompleted"/> before calling this method.
         /// The camera must be in the <see cref="CameraState.Preview"/> state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>
         /// http://tizen.org/privilege/camera
         /// </privilege>
@@ -710,6 +738,7 @@ namespace Tizen.Multimedia
         /// Starts camera auto-focusing, asynchronously.
         /// The camera must be in the <see cref="CameraState.Preview"/> or <see cref="CameraState.Captured"/> state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="continuous">Continuous auto focus</param>
         /// <privilege>
         /// http://tizen.org/privilege/camera
@@ -734,6 +763,7 @@ namespace Tizen.Multimedia
         /// Stops camera auto focusing.
         /// The camera must be in the <see cref="CameraState.Preview"/> or <see cref="CameraState.Captured"/> state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>
         /// http://tizen.org/privilege/camera
         /// </privilege>
@@ -753,6 +783,7 @@ namespace Tizen.Multimedia
         /// Starts face detection.
         /// The camera must be in the <see cref="CameraState.Preview"/> state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>
         /// http://tizen.org/privilege/camera
         /// </privilege>
@@ -789,6 +820,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Stops face detection.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>
         /// http://tizen.org/privilege/camera
         /// </privilege>
old mode 100644 (file)
new mode 100755 (executable)
index cda2784..119b802
@@ -33,16 +33,19 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The image data of the captured picture.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public ImageData Image { get; }
 
         /// <summary>
         /// The image data of the postview.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public ImageData PostView { get; }
 
         /// <summary>
         /// The image data of the thumbnail.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public ImageData Thumbnail { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index 88e94f1..32353f1
@@ -33,11 +33,13 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Camera device type.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraDevice Device { get; }
 
         /// <summary>
         /// Current state of the camera device.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraDeviceState State { get; }
     }
 }
index 2d89713..6f5ab4f 100755 (executable)
@@ -35,6 +35,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The display mode.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraDisplayMode"/> that specifies the display mode.</value>
         /// <exception cref="ObjectDisposedException" > The camera already has been disposed.</exception>
         public CameraDisplayMode Mode
@@ -60,6 +61,7 @@ namespace Tizen.Multimedia
         /// The display visibility.
         /// True if camera display visible, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException" > The camera already has been disposed.</exception>
         public bool Visible
         {
@@ -83,6 +85,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The display rotation.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraRotation"/> that specifies the rotation of camera device.</value>
         /// <exception cref="ObjectDisposedException" > The camera already has been disposed.</exception>
         public CameraRotation Rotation
@@ -107,6 +110,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The display flip.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraFlip"/> that specifies camera flip type.</value>
         /// <exception cref="ObjectDisposedException" > The camera already has been disposed.</exception>
         public CameraFlip Flip
@@ -131,6 +135,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// the ROI(Region Of Interest) area of display.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException" > The camera already has been disposed.</exception>
         public Rectangle RoiArea
         {
index a14aadc..2e25a6e 100755 (executable)
@@ -21,6 +21,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for Camera device.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraDevice
     {
         /// <summary>
@@ -36,6 +37,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for Camera device state.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraDeviceState
     {
         /// <summary>
@@ -55,6 +57,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the facing direction of camera module .
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraFacingDirection
     {
         /// <summary>
@@ -70,6 +73,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the current flash state.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraFlashState
     {
         /// <summary>
@@ -85,6 +89,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the camera flip type.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraFlip
     {
         /// <summary>
@@ -108,6 +113,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the camera focus state.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraFocusState
     {
         /// <summary>
@@ -131,6 +137,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the camera pixel format.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraPixelFormat
     {
         /// <summary>
@@ -202,6 +209,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the camera policy.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraPolicy
     {
         /// <summary>
@@ -221,6 +229,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the camera rotation type.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraRotation
     {
         /// <summary>
@@ -244,6 +253,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the camera state.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraState
     {
         /// <summary>
@@ -271,6 +281,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the auto focus mode.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraAutoFocusMode
     {
         /// <summary>
@@ -294,6 +305,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the color tone, which provides the impression of looking through a tinted glass.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraEffectMode
     {
         /// <summary>
@@ -425,6 +437,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the camera exposure modes.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraExposureMode
     {
         /// <summary>
@@ -452,6 +465,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the flash mode.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraFlashMode
     {
         /// <summary>
@@ -491,6 +505,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for preview FPS.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraFps
     {
         /// <summary>
@@ -542,6 +557,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for HDR capture mode.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraHdrMode
     {
         /// <summary>
@@ -561,6 +577,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the ISO levels of the camera.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraIsoLevel
     {
         /// <summary>
@@ -600,6 +617,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for PTZ(Pan Tilt Zoom) movement type.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraPtzMoveType
     {
         /// <summary>
@@ -615,6 +633,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for PTZ(Pan Tilt Zoom) type.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraPtzType
     {
         /// <summary>
@@ -630,6 +649,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the camera scene mode.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraSceneMode
     {
         /// <summary>
@@ -701,6 +721,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the orientation values of tag.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraTagOrientation
     {
         /// <summary>
@@ -740,6 +761,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the theater mode.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraTheaterMode
     {
         /// <summary>
@@ -759,6 +781,7 @@ namespace Tizen.Multimedia
     /// <summary>
     ///Enumeration for the white balance levels of the camera.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraWhiteBalance
     {
         /// <summary>
@@ -806,6 +829,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for the camera display mode.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraDisplayMode
     {
         /// <summary>
@@ -837,6 +861,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for camera failure error.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum CameraErrorCode
     {
         /// <summary>
@@ -860,6 +885,7 @@ namespace Tizen.Multimedia
     /// <summary>
     /// Enumeration for Image datatype.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum PlaneType
     {
         /// <summary>
old mode 100644 (file)
new mode 100755 (executable)
index cd4239c..883596b
@@ -33,11 +33,13 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The camera error code.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraErrorCode Error { get; }
 
         /// <summary>
         /// The state of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraState State { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index 1af0ad3..9763f31
@@ -89,83 +89,97 @@ namespace Tizen.Multimedia
         /// Gets the face detection feature's supported state.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsFaceDetectionSupported { get; }
 
         /// <summary>
         /// Gets the media packet preview callback feature's supported state.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsMediaPacketPreviewCallbackSupported { get; }
 
         /// <summary>
         /// Gets the zero shutter lag feature's supported state.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsZeroShutterLagSupported { get; }
 
         /// <summary>
         /// Gets continuous capture feature's supported state.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsContinuousCaptureSupported { get; }
 
         /// <summary>
         /// Gets the support state of HDR capture.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsHdrCaptureSupported { get; }
 
         /// <summary>
         /// Gets the support state of the anti-shake feature.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsAntiShakeSupported { get; }
 
         /// <summary>
         /// Gets the support state of the video stabilization feature.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsVideoStabilizationSupported { get; }
 
         /// <summary>
         /// Gets the support state of auto contrast feature.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsAutoContrastSupported { get; }
 
         /// <summary>
         /// Gets the support state of brightness feature.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsBrigtnessSupported { get; }
 
         /// <summary>
         /// Gets the support state of exposure feature.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsExposureSupported { get; }
 
         /// <summary>
         /// Gets the support state of zoom feature.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsZoomSupported { get; }
 
         /// <summary>
         /// Gets the support state of pan feature.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsPanSupported { get; }
 
         /// <summary>
         /// Gets the support state of tilt feature.
         /// true if supported, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsTiltSupported { get; }
 
         /// <summary>
         /// Retrieves all the preview resolutions supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported preview resolutions.
         /// by recorder.
@@ -203,6 +217,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the capture resolutions supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported capture resolutions.
         /// </returns>
@@ -239,6 +254,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the capture formats supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraPixelFormat"/>.
         /// </returns>
@@ -275,6 +291,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the preview formats supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraPixelFormat"/>.
         /// </returns>
@@ -311,6 +328,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the fps supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraFps"/>.
         /// </returns>
@@ -347,6 +365,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the fps by resolution supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraFps"/> by resolution.
         /// </returns>
@@ -380,6 +399,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the fps by resolution supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraFps"/> by resolution.
         /// </returns>
@@ -392,6 +412,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the auto focus modes supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraAutoFocusMode"/>.
         /// </returns>
@@ -428,6 +449,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the exposure modes supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraExposureMode"/>.
         /// </returns>
@@ -464,6 +486,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the Iso level supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraIsoLevel"/>.
         /// </returns>
@@ -500,6 +523,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the theater modes supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraTheaterMode"/>.
         /// </returns>
@@ -536,6 +560,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the whitebalance modes supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraWhiteBalance"/>.
         /// </returns>
@@ -572,6 +597,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the flash modes supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraFlashMode"/>.
         /// </returns>
@@ -608,6 +634,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the scene modes supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraSceneMode"/>.
         /// </returns>
@@ -644,6 +671,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the effect modes supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraEffectMode"/>.
         /// </returns>
@@ -680,6 +708,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the stream rotation supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraRotation"/>.
         /// </returns>
@@ -716,6 +745,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the flips supported by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraFlip"/>.
         /// </returns>
@@ -752,6 +782,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Retrieves all the ptz types by the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It returns a list containing all the supported <see cref="CameraPtzType"/>.
         /// </returns>
old mode 100644 (file)
new mode 100755 (executable)
index f9b8f06..c288d73
@@ -32,6 +32,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Focus state of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraFocusState State { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index 65eec34..4ce158a
@@ -34,16 +34,19 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Previous state of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraState Previous { get; }
 
         /// <summary>
         /// Current state of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraState Current { get; }
 
         /// <summary>
         /// The policy that interrupted the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraPolicy Policy { get; }
     }
 }
index 4c125c1..ceb9b90 100755 (executable)
@@ -69,6 +69,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Sets auto focus area.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// <see cref="CameraAutoFocusMode"/> should not be the <see cref="CameraAutoFocusMode.None"/>.
         /// </remarks>
@@ -86,6 +87,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Sets auto focus area.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// <see cref="CameraAutoFocusMode"/> should not be the <see cref="CameraAutoFocusMode.None"/>.
         /// </remarks>
@@ -102,6 +104,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Clears the auto focus area.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public void ClearFocusArea()
         {
@@ -112,6 +115,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The auto focus mode.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraAutoFocusMode"/> that specifies the auto focus mode.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraAutoFocusMode AutoFocusMode
@@ -138,6 +142,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The contrast level of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public int Contrast
         {
@@ -162,6 +167,7 @@ namespace Tizen.Multimedia
         /// The auto contrast.
         /// If true auto contrast is enabled, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public bool AutoContrast
         {
@@ -184,6 +190,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the available contrast level.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// If min value is greater than the max value, it means this feature is not supported.
         /// </remarks>
@@ -206,6 +213,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The brightness level of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public int Brightness
         {
@@ -229,6 +237,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the available brightness level.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// If min value is greater than the max value, it means this feature is not supported.
         /// </remarks>
@@ -251,6 +260,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The exposure value.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public int Exposure
         {
@@ -274,6 +284,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The exposure mode.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraExposureMode"/> that specifies the exposure mode.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraExposureMode ExposureMode
@@ -298,6 +309,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the available exposure value.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// If min value is greater than the max value, it means this feature is not supported.
         /// </remarks>
@@ -321,6 +333,7 @@ namespace Tizen.Multimedia
         /// The zoom level.
         /// The range for zoom level is received from ZoomRange property.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public int ZoomLevel
         {
@@ -344,6 +357,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the available zoom level.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// If min value is greater than the max value, it means this feature is not supported.
         /// </remarks>
@@ -365,6 +379,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The whitebalance mode.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraWhiteBalance"/> that specifies the white balance mode.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraWhiteBalance WhiteBalance
@@ -389,6 +404,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The ISO level.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraIsoLevel"/> that specifies ISO level.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraIsoLevel IsoLevel
@@ -414,6 +430,7 @@ namespace Tizen.Multimedia
         /// The quality of the image.
         /// The range for image quality is 1 to 100.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public int ImageQuality
         {
@@ -438,6 +455,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The preview frame rate.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraFps"/> that specifies preview frame rate.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraFps PreviewFps
@@ -462,6 +480,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets or sets the resolution of preview
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ArgumentException">In case of invalid parameters.</exception>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public Size PreviewResolution
@@ -487,6 +506,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the recommended preview resolution.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// Depending on the capture resolution aspect ratio and display resolution,
         /// the recommended preview resolution is determined.
@@ -509,6 +529,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The preview data format.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraPixelFormat"/> that specifies the pixel format of preview data.</value>
         /// <exception cref="ArgumentException">In case of invalid parameters.</exception>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
@@ -534,6 +555,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Resolution of the captured image.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ArgumentException">In case of invalid parameters</exception>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public Size CaptureResolution
@@ -561,6 +583,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Format of an image to be captured.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraPixelFormat"/> that specifies the pixel format of captured image.</value>
         /// <exception cref="ArgumentException">In case of invalid parameters</exception>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
@@ -588,6 +611,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The bit rate of encoded preview.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public int EncodedPreviewBitrate
         {
@@ -611,6 +635,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// GOP(Group Of Pictures) interval of encoded preview.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public int EncodedPreviewGopInterval
         {
@@ -635,6 +660,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The theater mode.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraTheaterMode"/> that specifies theater mode.</value>
         /// <remarks>
         /// If you want to display the preview image on the external display with the full screen mode,
@@ -663,6 +689,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The camera effect mode.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraEffectMode"/> that specifies effect mode.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraEffectMode Effect
@@ -687,6 +714,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The scene mode.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraSceneMode"/> that specifies scene mode.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraSceneMode SceneMode
@@ -711,6 +739,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The camera's flash mode.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraFlashMode"/> that specifies flash mode.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraFlashMode FlashMode
@@ -735,6 +764,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the camera lens orientation angle.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public int LensOrientation
         {
@@ -752,6 +782,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The stream rotation.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraRotation"/> that specifies the rotation of camera device.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraRotation StreamRotation
@@ -776,6 +807,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The stream flip.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraFlip"/> that specifies camera flip type.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraFlip StreamFlip
@@ -800,6 +832,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The mode of HDR(High dynamic range) capture.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraHdrMode"/> that specifies the HDR mode.</value>
         /// <remarks>
         /// Taking multiple pictures at different exposure levels and intelligently stitching them together
@@ -830,6 +863,7 @@ namespace Tizen.Multimedia
         /// The anti shake feature.
         /// If true the antishake feature is enabled, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public bool AntiShake
         {
@@ -854,6 +888,7 @@ namespace Tizen.Multimedia
         /// Enables/Disables the video stabilization feature.
         /// If true video stabilization is enabled, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// If video stabilization is enabled, zero shutter lag is disabled.
         /// This feature is used to record a video.
@@ -882,6 +917,7 @@ namespace Tizen.Multimedia
         /// Disables shutter sound.
         /// If true shutter sound is disabled, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// In some countries, this operation is not permitted.
         /// </remarks>
@@ -899,6 +935,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Sets the type of PTZ(Pan Tilt Zoom). Mechanical or Electronic.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>A <see cref="CameraPtzType"/> that specifies the type of PTZ.</value>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraPtzType PtzType
@@ -913,6 +950,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Sets the position to move horizontally.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="type">ptz move type. <seealso cref="CameraPtzMoveType"/></param>
         /// <param name="panStep">pan step</param>
         /// <exception cref="ArgumentException">In case of invalid parameters</exception>
@@ -926,6 +964,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the current position of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>Returns the camera's horizontal position</returns>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public int GetPan()
@@ -941,6 +980,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Sets the position to move vertically.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="type">ptz move type</param>
         /// <param name="tiltStep">tilt step</param>
         /// <exception cref="ArgumentException">In case of invalid parameters</exception>
@@ -954,6 +994,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets the current position of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>Returns the current vertical position</returns>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public int GetTilt()
@@ -969,6 +1010,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets lower limit and upper limit for pan position.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// If min value is greater than the max value, it means this feature is not supported.
         /// </remarks>
@@ -988,6 +1030,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Gets lower limit and upper limit for tilt position.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>
         /// If min value is greater than the max value, it means this feature is not supported.
         /// </remarks>
@@ -1010,6 +1053,7 @@ namespace Tizen.Multimedia
         /// The scene mode.
         /// true if EXIF tags are enabled in JPEG file, otherwise false.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public bool EnableTag
         {
@@ -1033,6 +1077,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The camera image description in the EXIF tag.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public string ImageDescriptionTag
         {
@@ -1062,6 +1107,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The software information in the EXIF tag.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public string SoftwareTag
         {
@@ -1092,6 +1138,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The geotag(GPS data) in the EXIF tag.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public Location GeoTag
         {
@@ -1117,6 +1164,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Removes the geotag(GPS data) in the EXIF(Exchangeable image file format) tag.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public void RemoveGeoTag()
         {
@@ -1127,6 +1175,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The camera orientation in the tag.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="ObjectDisposedException">The camera already has been disposed.</exception>
         public CameraTagOrientation OrientationTag
         {
old mode 100644 (file)
new mode 100755 (executable)
index ba75279..96e2e0c
@@ -34,17 +34,20 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Previous state of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraState Previous { get; }
 
         /// <summary>
         /// Current state of the camera.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraState Current { get; }
 
         /// <summary>
         /// true if the state changed by policy such as Resource Conflict or Security, otherwise false
         /// in normal state change.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool ByPolicy { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index a3ad1a6..e6960f1
@@ -35,11 +35,13 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The Y plane data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public byte[] Y { get; }
 
         /// <summary>
         /// The UV plane data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public byte[] UV { get; }
     }
 }
\ No newline at end of file
old mode 100644 (file)
new mode 100755 (executable)
index 40ac360..d88e596
@@ -33,6 +33,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The buffer containing encoded image data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public byte[] Data { get; }
     }
 }
\ No newline at end of file
old mode 100644 (file)
new mode 100755 (executable)
index 3eca489..6c5feaa
@@ -33,6 +33,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// List containing faces of type <see cref="Tizen.Multimedia.FaceDetectionData"/>.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<FaceDetectionData> Faces { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index 2e912f2..53905c7
@@ -40,31 +40,37 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The Id of each face.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Id { get; }
 
         /// <summary>
         /// The confidence level for the detection of the face.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Score { get; }
 
         /// <summary>
         /// The X co-ordinate of the face.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int X { get; }
 
         /// <summary>
         /// The Y co-ordinate of the face.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Y { get; }
 
         /// <summary>
         /// The width of the face.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Width { get; }
 
         /// <summary>
         /// The height of the face.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Height { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index e69b3f7..ce5db62
@@ -31,6 +31,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Hdr Capture progress in percent.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Percent { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index 26885c1..0066447
@@ -55,26 +55,31 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The pixel format of the captured image.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraPixelFormat Format { get; }
 
         /// <summary>
         /// The width of the image.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Width { get; }
 
         /// <summary>
         /// The height of the image.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Height { get; }
 
         /// <summary>
         /// The buffer containing image data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public byte[] Data { get; }
 
         /// <summary>
         /// String containing Exif data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public byte[] Exif { get; }
     }
 }
index 9fc9f3b..1733352 100755 (executable)
@@ -37,16 +37,19 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The Latitude data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public double Latitude { get; }
 
         /// <summary>
         /// The Longitude data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public double Longitude { get; }
 
         /// <summary>
         /// The Altitude data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public double Altitude { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index 1ee2dce..40736c1
@@ -31,6 +31,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Media Packet data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public MediaPacket Packet { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index 7a23e90..cfe628b
@@ -88,25 +88,37 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The pixel format of the image.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public CameraPixelFormat Format { get; }
 
         /// <summary>
         /// The width of the image.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Width { get; }
 
         /// <summary>
         /// The height of the image.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Height { get; }
 
         /// <summary>
-        /// The time of capture of the image.
+        /// The timestamp of preview frame.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public uint TimeStamp { get; }
 
+        /// <summary>
+        /// The buffer including preview frame.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public IPreviewPlane Plane { get; }
 
+        /// <summary>
+        /// The type of preview plane. <see cref="Tizen.Multimedia.PlaneType"/>
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public PlaneType PlaneType { get; }
     }
 }
\ No newline at end of file
old mode 100644 (file)
new mode 100755 (executable)
index bd4b1d2..2db3b85
@@ -31,6 +31,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// PreviewData frame.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public PreviewData Preview { get; }
     }
 }
old mode 100644 (file)
new mode 100755 (executable)
index 4273405..33e64f2
@@ -33,6 +33,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The YUV plane data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public byte[] Data { get; }
     }
 }
\ No newline at end of file
old mode 100644 (file)
new mode 100755 (executable)
index 4464e37..132911b
@@ -37,16 +37,19 @@ namespace Tizen.Multimedia
         /// <summary>
         /// The Y plane data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public byte[] Y { get; }
 
         /// <summary>
         /// The U plane data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public byte[] U { get; }
 
         /// <summary>
         /// The V plane data.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public byte[] V { get; }
     }
 }
\ No newline at end of file