1 write to _wrappedDictionary
WindowsFormsIntegration (1)
System\Windows\Integration\PropertyMap.cs (1)
54
_wrappedDictionary
= new Dictionary<string, PropertyTranslator>();
8 references to _wrappedDictionary
WindowsFormsIntegration (8)
System\Windows\Integration\PropertyMap.cs (8)
91
if (
_wrappedDictionary
.TryGetValue(propertyName, out value))
110
_wrappedDictionary
[propertyName] = value; //This will replace an existing mapping, unlike Add.
123
return
_wrappedDictionary
.Keys;
135
return
_wrappedDictionary
.Values;
211
_wrappedDictionary
.Clear();
221
return
_wrappedDictionary
.ContainsKey(propertyName);
231
_wrappedDictionary
.Remove(propertyName);
315
if (!
_wrappedDictionary
.TryGetValue(propertyName, out translator) || translator == null)