1 write to _wrappedDictionary
WindowsFormsIntegration (1)
System\Windows\Integration\PropertyMap.cs (1)
34
_wrappedDictionary
= new Dictionary<string, PropertyTranslator>();
8 references to _wrappedDictionary
WindowsFormsIntegration (8)
System\Windows\Integration\PropertyMap.cs (8)
71
if (
_wrappedDictionary
.TryGetValue(propertyName, out value))
90
_wrappedDictionary
[propertyName] = value; //This will replace an existing mapping, unlike Add.
103
return
_wrappedDictionary
.Keys;
115
return
_wrappedDictionary
.Values;
191
_wrappedDictionary
.Clear();
201
return
_wrappedDictionary
.ContainsKey(propertyName);
211
_wrappedDictionary
.Remove(propertyName);
295
if (!
_wrappedDictionary
.TryGetValue(propertyName, out translator) || translator == null)