1 write to _propertyBag
Microsoft.Maui.Controls (1)
DragAndDrop\DataPackagePropertySet.cs (1)
16 _propertyBag = new(StringComparer.Ordinal);
10 references to _propertyBag
Microsoft.Maui.Controls (10)
DragAndDrop\DataPackagePropertySet.cs (10)
21 get => _propertyBag[key]; 22 set => _propertyBag[key] = value; 26 public int Count => _propertyBag.Count; 29 public IEnumerable<string> Keys => _propertyBag.Keys; 31 public IEnumerable<object> Values => _propertyBag.Values; 36 _propertyBag.Add(key, value); 40 public bool ContainsKey(string key) => _propertyBag.ContainsKey(key); 43 public IEnumerator<KeyValuePair<string, object>> GetEnumerator() => _propertyBag.GetEnumerator(); 46 public bool TryGetValue(string key, out object value) => _propertyBag.TryGetValue(key, out value); 50 return _propertyBag.GetEnumerator();