From: Haesu Gwon Date: Thu, 28 Sep 2017 05:43:16 +0000 (+0900) Subject: [Camera] Fix XML documentation warnings X-Git-Tag: preview1-00264^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F10%2F153210%2F1;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [Camera] Fix XML documentation warnings Change-Id: I4767ce5f9485e3e98c55528e51c50064af56ca9d Signed-off-by: Haesu Gwon --- 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 { }