From 124bab99450b73ba40bf2dd462ec05ddb000ce41 Mon Sep 17 00:00:00 2001 From: Haesu Gwon Date: Thu, 28 Sep 2017 14:43:16 +0900 Subject: [PATCH] [Camera] Fix XML documentation warnings Change-Id: I4767ce5f9485e3e98c55528e51c50064af56ca9d Signed-off-by: Haesu Gwon --- src/Tizen.Multimedia.Camera/Camera/Camera.cs | 3 +++ .../Camera/CameraException.cs | 27 ++++++++++++++++++++++ .../Camera/IPreviewPlane.cs | 3 +++ 3 files changed, 33 insertions(+) mode change 100755 => 100644 src/Tizen.Multimedia.Camera/Camera/Camera.cs mode change 100755 => 100644 src/Tizen.Multimedia.Camera/Camera/CameraException.cs mode change 100755 => 100644 src/Tizen.Multimedia.Camera/Camera/IPreviewPlane.cs diff --git a/src/Tizen.Multimedia.Camera/Camera/Camera.cs b/src/Tizen.Multimedia.Camera/Camera/Camera.cs old mode 100755 new mode 100644 index 91f6c64..9ac9378 --- a/src/Tizen.Multimedia.Camera/Camera/Camera.cs +++ b/src/Tizen.Multimedia.Camera/Camera/Camera.cs @@ -71,6 +71,9 @@ namespace Tizen.Multimedia Dispose(false); } + /// + /// Gets the native handle of the camera. + /// public IntPtr Handle => GetHandle(); internal IntPtr GetHandle() diff --git a/src/Tizen.Multimedia.Camera/Camera/CameraException.cs b/src/Tizen.Multimedia.Camera/Camera/CameraException.cs old mode 100755 new mode 100644 index 40d2a70..e75d678 --- a/src/Tizen.Multimedia.Camera/Camera/CameraException.cs +++ b/src/Tizen.Multimedia.Camera/Camera/CameraException.cs @@ -18,34 +18,61 @@ using System; namespace Tizen.Multimedia { + /// + /// The base exception class that is thrown when specific camera related error occurs. + /// public class CameraException : Exception { + /// + /// Initializes a new instance of the class. + /// public CameraException() : base() { } + /// + /// Initializes a new instance of the class with a specified error message. + /// public CameraException(string message) : base(message) { } } + /// + /// The exception that is thrown when a camera device-related error occurs. + /// public class CameraDeviceException : CameraException { + /// + /// Initializes a new instance of the class. + /// public CameraDeviceException() : base() { } + /// + /// Initializes a new instance of the class with a specified error message. + /// public CameraDeviceException(string message) : base(message) { } } + /// + /// The exception that is thrown when a camera device is not available. + /// public class CameraDeviceNotFoundException : CameraException { + /// + /// Initializes a new instance of the class. + /// public CameraDeviceNotFoundException() : base() { } + /// + /// Initializes a new instance of the class with a specified error message. + /// public CameraDeviceNotFoundException(string message) : base(message) { } diff --git a/src/Tizen.Multimedia.Camera/Camera/IPreviewPlane.cs b/src/Tizen.Multimedia.Camera/Camera/IPreviewPlane.cs old mode 100755 new mode 100644 index d84d07a..8a9dc83 --- a/src/Tizen.Multimedia.Camera/Camera/IPreviewPlane.cs +++ b/src/Tizen.Multimedia.Camera/Camera/IPreviewPlane.cs @@ -16,6 +16,9 @@ namespace Tizen.Multimedia { + /// + /// Provides interface for various preview plane types. + /// public interface IPreviewPlane { } -- 2.7.4