namespace Xamarin.Forms.Xaml.Internals { public interface INativeBindingService { bool TrySetBinding(object target, string propertyName, BindingBase binding); bool TrySetBinding(object target, BindableProperty property, BindingBase binding); bool TrySetValue(object target, BindableProperty property, object value); } }