1 write to _propertiesEnumerator
Microsoft.Maui.Controls (1)
BindableObject.cs (1)
180
internal LocalValueEnumerator(BindableObject bindableObject) =>
_propertiesEnumerator
= bindableObject._properties.GetEnumerator();
6 references to _propertiesEnumerator
Microsoft.Maui.Controls (6)
BindableObject.cs (6)
187
if (
_propertiesEnumerator
.MoveNext())
189
Current = new LocalValueEntry(
_propertiesEnumerator
.Current.Key,
_propertiesEnumerator
.Current.Value.Values.GetValue(),
_propertiesEnumerator
.Current.Value.Attributes);
195
public void Dispose() =>
_propertiesEnumerator
.Dispose();
199
((IEnumerator)
_propertiesEnumerator
).Reset();