1 write to _wrappedDictionary
WindowsFormsIntegration (1)
System\Windows\Integration\PropertyMap.cs (1)
33
_wrappedDictionary
= new Dictionary<string, PropertyTranslator>();
8 references to _wrappedDictionary
WindowsFormsIntegration (8)
System\Windows\Integration\PropertyMap.cs (8)
70
if (
_wrappedDictionary
.TryGetValue(propertyName, out value))
89
_wrappedDictionary
[propertyName] = value; //This will replace an existing mapping, unlike Add.
102
return
_wrappedDictionary
.Keys;
114
return
_wrappedDictionary
.Values;
190
_wrappedDictionary
.Clear();
200
return
_wrappedDictionary
.ContainsKey(propertyName);
210
_wrappedDictionary
.Remove(propertyName);
294
if (!
_wrappedDictionary
.TryGetValue(propertyName, out translator) || translator == null)