[NUI] Add comments for AddIdle()
authordongsug.song <dongsug.song@samsung.com>
Wed, 20 Oct 2021 06:25:43 +0000 (15:25 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Tue, 9 Nov 2021 05:57:53 +0000 (14:57 +0900)
src/Tizen.NUI/src/internal/Application/Application.cs

index b154b26..ac87ddc 100755 (executable)
@@ -1103,6 +1103,11 @@ namespace Tizen.NUI
         /// </summary>
         /// <param name="func">The function to call</param>
         /// <returns>true if added successfully, false otherwise</returns>
+        /// <remarks>
+        /// It will return false when one of the following conditions is met.
+        /// 1) the <see cref="Window"/> is hidden.
+        /// 2) the <see cref="Window"/> is iconified.
+        /// </remarks>
         public bool AddIdle(System.Delegate func)
         {
             System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate<System.Delegate>(func);