[NUI] Revive IsBinded API for Xaml
authorEunki, Hong <eunkiki.hong@samsung.com>
Thu, 24 Aug 2023 02:52:39 +0000 (11:52 +0900)
committerEunki Hong <h.pichulia@gmail.com>
Thu, 24 Aug 2023 04:00:17 +0000 (13:00 +0900)
Due to some legacy app use this internal property, we should revive this
legacy property.

It will be removed after all apps change this legacy codes

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
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