[Camera] Remove useless logs (#3915)
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.Camera / Camera / CameraCapturingEventArgs.cs
old mode 100755 (executable)
new mode 100644 (file)
index 584b529..f4277c0
@@ -19,8 +19,9 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about the captured still image.
+    /// Provides data for the <see cref="Camera.Capturing"/> event.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public class CameraCapturingEventArgs : EventArgs
     {
         internal CameraCapturingEventArgs(StillImage main, StillImage post, StillImage thumbnail)
@@ -31,22 +32,21 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// The main image data of the captured still image.
+        /// Gets the main image data of the captured still image.
         /// </summary>
-        /// <since_tizen> 3 </since_tizen>
+        /// <since_tizen> 4 </since_tizen>
         public StillImage MainImage { get; }
 
         /// <summary>
-        /// The image data of the postview.
+        /// Gets the image data of the post view.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public StillImage PostView { get; }
 
         /// <summary>
-        /// The image data of the thumbnail.
+        /// Gets the image data of the thumbnail.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public StillImage Thumbnail { get; }
     }
 }
-