diff --git a/src/Tizen.NUI/src/public/Window/Window.cs b/src/Tizen.NUI/src/public/Window/Window.cs index 1567a5ccc74..8476d77c0ec 100755 --- a/src/Tizen.NUI/src/public/Window/Window.cs +++ b/src/Tizen.NUI/src/public/Window/Window.cs @@ -869,6 +869,8 @@ public void SetInputRegion(Rectangle inputRegion) /// /// The notification window level. /// True if no error occurred, false otherwise. + /// http://tizen.org/privilege/window.priority.set + /// This exception can be thrown due to permission denied. /// 3 public bool SetNotificationLevel(NotificationLevel level) { @@ -923,6 +925,8 @@ public bool IsOpaqueState() /// /// The screen mode. /// True if no error occurred, false otherwise. + /// http://tizen.org/privilege/display + /// This exception can be thrown due to permission denied. /// 4 public bool SetScreenOffMode(ScreenOffMode screenOffMode) { @@ -948,6 +952,8 @@ public ScreenOffMode GetScreenOffMode() /// /// The preferred brightness (0 to 100). /// True if no error occurred, false otherwise. + /// http://tizen.org/privilege/display + /// This exception can be thrown due to permission denied. /// 3 public bool SetBrightness(int brightness) { @@ -1105,6 +1111,8 @@ public void KeepRendering(float durationSeconds) /// /// The key code to grab. /// True if the grab succeeds. + /// http://tizen.org/privilege/keygrab + /// This exception can be thrown due to permission denied. /// 3 public bool GrabKeyTopmost(int DaliKey) { @@ -1119,6 +1127,8 @@ public bool GrabKeyTopmost(int DaliKey) /// /// The key code to ungrab. /// True if the ungrab succeeds. + /// http://tizen.org/privilege/keygrab + /// This exception can be thrown due to permission denied. /// 3 public bool UngrabKeyTopmost(int DaliKey) { @@ -1137,6 +1147,8 @@ public bool UngrabKeyTopmost(int DaliKey) /// The key code to grab. /// The grab mode for the key. /// True if the grab succeeds. + /// http://tizen.org/privilege/keygrab + /// This exception can be thrown due to permission denied. /// 3 public bool GrabKey(int DaliKey, KeyGrabMode GrabMode) { @@ -1151,6 +1163,8 @@ public bool GrabKey(int DaliKey, KeyGrabMode GrabMode) /// /// The key code to ungrab. /// True if the ungrab succeeds. + /// http://tizen.org/privilege/keygrab + /// This exception can be thrown due to permission denied. /// 3 public bool UngrabKey(int DaliKey) {