Add exception explanation for led(back flash)
authorpr.jung <pr.jung@samsung.com>
Wed, 2 Nov 2016 07:58:28 +0000 (16:58 +0900)
committerpr.jung <pr.jung@samsung.com>
Wed, 2 Nov 2016 07:58:28 +0000 (16:58 +0900)
Change-Id: I4e72d12f17576df108d5b422c8c3d25118893732
Signed-off-by: pr.jung <pr.jung@samsung.com>
Tizen.System/Device/Led.cs

index 26181b0..e67db45 100644 (file)
@@ -42,6 +42,9 @@ namespace Tizen.System
     {
         /// <summary>
         /// Gets the max brightness value of a LED that is located next to the camera.
+        /// <exception cref="ArgumentException"> When the invalid parameter value is set.</exception>
+        /// <exception cref = "UnauthorizedAccessException"> If the privilege is not set.</exception>
+        /// <exception cref = "NotSupportedException"> In case of device does not support this behavior.</exception>
         /// </summary>
         public static int MaxBrightness
         {
@@ -67,6 +70,7 @@ namespace Tizen.System
         /// </remarks>
         /// <exception cref="ArgumentException"> When the invalid parameter value is set.</exception>
         /// <exception cref = "UnauthorizedAccessException"> If the privilege is not set.</exception>
+        /// <exception cref = "NotSupportedException"> In case of device does not support this behavior.</exception>
         /// <code>
         ///     Console.WriteLine("Led current Brightness is: {0}", Tizen.System.Led.Brightness);
         ///     Tizen.System.Led.Brightness = 50;