[NUI] Revive IsBinded API for Xaml
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / XamlBinding / BindableObject.cs
index c656697..2beb056 100755 (executable)
@@ -793,6 +793,24 @@ namespace Tizen.NUI.Binding
 
         /// <summary>
         /// Check if object is bound or not.
+        /// This API used for legacy codes.
+        /// Should be removed after all app usage replaced into IsBound.
+        /// </summary>
+        [Obsolete("This has been deprecated in API11. Use IsBound property instead.")]
+        internal bool IsBinded
+        {
+            get
+            {
+                return IsBound;
+            }
+            set
+            {
+                IsBound = value;
+            }
+        }
+
+        /// <summary>
+        /// Check if object is bound or not.
         /// </summary>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool IsBound