7 references to GetRealizedMode
Microsoft.Maui.Controls (7)
BindableObject.cs (1)
289 => SetBinding(targetProperty, binding, binding != null && targetProperty != null && binding.GetRealizedMode(targetProperty) == BindingMode.TwoWay ? SetterSpecificity.FromHandler : SetterSpecificity.FromBinding);
BindingExpression.cs (1)
123 BindingMode mode = Binding.GetRealizedMode(_targetProperty);
MultiBinding.cs (4)
88 if (this.GetRealizedMode(_targetProperty) == BindingMode.OneTime) 91 if (fromTarget && this.GetRealizedMode(_targetProperty) == BindingMode.OneWay) 94 if (!fromTarget && this.GetRealizedMode(_targetProperty) == BindingMode.OneWayToSource) 169 if (this.GetRealizedMode(_targetProperty) == BindingMode.OneWayToSource)
TypedBinding.cs (1)
296 var mode = this.GetRealizedMode(property);