[Camera] Fix XML documentation warnings 10/153210/1
authorHaesu Gwon <haesu.gwon@samsung.com>
Thu, 28 Sep 2017 05:43:16 +0000 (14:43 +0900)
committerHaesu Gwon <haesu.gwon@samsung.com>
Thu, 28 Sep 2017 05:43:16 +0000 (14:43 +0900)
Change-Id: I4767ce5f9485e3e98c55528e51c50064af56ca9d
Signed-off-by: Haesu Gwon <haesu.gwon@samsung.com>
src/Tizen.Multimedia.Camera/Camera/Camera.cs [changed mode: 0755->0644]
src/Tizen.Multimedia.Camera/Camera/CameraException.cs [changed mode: 0755->0644]
src/Tizen.Multimedia.Camera/Camera/IPreviewPlane.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 91f6c64..9ac9378
@@ -71,6 +71,9 @@ namespace Tizen.Multimedia
             Dispose(false);
         }
 
+        /// <summary>
+        /// Gets the native handle of the camera.
+        /// </summary>
         public IntPtr Handle => GetHandle();
 
         internal IntPtr GetHandle()
old mode 100755 (executable)
new mode 100644 (file)
index 40d2a70..e75d678
@@ -18,34 +18,61 @@ using System;
 
 namespace Tizen.Multimedia
 {
+    /// <summary>
+    /// The base exception class that is thrown when specific camera related error occurs.
+    /// </summary>
     public class CameraException : Exception
     {
+        /// <summary>
+        /// Initializes a new instance of the <see cref="CameraException"/> class.
+        /// </summary>
         public CameraException() : base()
         {
         }
 
+        /// <summary>
+        /// Initializes a new instance of the <see cref="CameraException"/> class with a specified error message.
+        /// </summary>
         public CameraException(string message) : base(message)
         {
         }
     }
 
+    /// <summary>
+    /// The exception that is thrown when a camera device-related error occurs.
+    /// </summary>
     public class CameraDeviceException : CameraException
     {
+        /// <summary>
+        /// Initializes a new instance of the <see cref="CameraDeviceException"/> class.
+        /// </summary>
         public CameraDeviceException() : base()
         {
         }
 
+        /// <summary>
+        /// Initializes a new instance of the <see cref="CameraDeviceException"/> class with a specified error message.
+        /// </summary>
         public CameraDeviceException(string message) : base(message)
         {
         }
     }
 
+    /// <summary>
+    /// The exception that is thrown when a camera device is not available.
+    /// </summary>
     public class CameraDeviceNotFoundException : CameraException
     {
+        /// <summary>
+        /// Initializes a new instance of the <see cref="CameraDeviceNotFoundException"/> class.
+        /// </summary>
         public CameraDeviceNotFoundException() : base()
         {
         }
 
+        /// <summary>
+        /// Initializes a new instance of the <see cref="CameraDeviceNotFoundException"/> class with a specified error message.
+        /// </summary>
         public CameraDeviceNotFoundException(string message) : base(message)
         {
         }
old mode 100755 (executable)
new mode 100644 (file)
index d84d07a..8a9dc83
@@ -16,6 +16,9 @@
 
 namespace Tizen.Multimedia
 {
+    /// <summary>
+    /// Provides interface for various preview plane types.
+    /// </summary>
     public interface IPreviewPlane
     {
     }