1 write to _handlers
Microsoft.Maui.Controls (1)
TypedBinding.cs (1)
134 _handlers = new PropertyChangedProxy[handlers.Length];
15 references to _handlers
Microsoft.Maui.Controls (15)
TypedBinding.cs (15)
139 _handlers[i] = new PropertyChangedProxy(handlers[i].Item1, handlers[i].Item2, this); 213 Tuple<Func<TSource, object>, string>[] handlers = _handlers == null ? null : new Tuple<Func<TSource, object>, string>[_handlers.Length]; 216 for (var i = 0; i < _handlers.Length; i++) 218 if (_handlers[i] == null) 220 handlers[i] = new Tuple<Func<TSource, object>, string>(_handlers[i].PartGetter, _handlers[i].PropertyName); 276 if (_handlers != null) 302 if (isTSource && (mode == BindingMode.OneWay || mode == BindingMode.TwoWay) && _handlers != null) 512 for (var i = 0; i < _handlers.Length; i++) 514 if (_handlers[i] == null) 516 var part = _handlers[i].PartGetter(sourceObject); 522 _handlers[i].Part = (inpc); 528 for (var i = 0; i < _handlers.Length; i++) 529 _handlers[i]?.Listener.Unsubscribe();