From: Eunki, Hong Date: Thu, 24 Aug 2023 02:52:39 +0000 (+0900) Subject: [NUI] Revive IsBinded API for Xaml X-Git-Tag: accepted/tizen/unified/20231205.024657~178 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6977ae43b0404f48cd6765bfb26ecdf54179c89c;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Revive IsBinded API for Xaml 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 --- diff --git a/src/Tizen.NUI/src/public/XamlBinding/BindableObject.cs b/src/Tizen.NUI/src/public/XamlBinding/BindableObject.cs index c656697..2beb056 100755 --- a/src/Tizen.NUI/src/public/XamlBinding/BindableObject.cs +++ b/src/Tizen.NUI/src/public/XamlBinding/BindableObject.cs @@ -793,6 +793,24 @@ namespace Tizen.NUI.Binding /// /// Check if object is bound or not. + /// This API used for legacy codes. + /// Should be removed after all app usage replaced into IsBound. + /// + [Obsolete("This has been deprecated in API11. Use IsBound property instead.")] + internal bool IsBinded + { + get + { + return IsBound; + } + set + { + IsBound = value; + } + } + + /// + /// Check if object is bound or not. /// [EditorBrowsable(EditorBrowsableState.Never)] public bool IsBound