[NUI] Add hidden Disposed field for BaseHandle
authorXianbing Teng <xb.teng@samsung.com>
Fri, 4 Jun 2021 06:51:21 +0000 (14:51 +0800)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Fri, 4 Jun 2021 07:09:41 +0000 (16:09 +0900)
src/Tizen.NUI/src/public/BaseHandle.cs

index 5ccca2c..a7d6084 100755 (executable)
@@ -521,6 +521,13 @@ namespace Tizen.NUI
         {
             get => swigCPtr;
         }
+
+        /// <summary>
+        /// A flag to check if it is already disposed.
+        /// </summary>
+        /// <remarks>Hidden API: Only for inhouse or developing usage. The behavior and interface can be changed anytime.</remarks>
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        protected internal bool Disposed => disposed;
     }
 
 }