2 instantiations of AccessorTableKey
PresentationFramework (2)
MS\Internal\Data\AccessorTable.cs (2)
65if (_table.TryGetValue(new AccessorTableKey(sourceValueType, type, name), out AccessorInfo info)) 96_table[new AccessorTableKey(sourceValueType, type, name)] = value;
10 references to AccessorTableKey
PresentationFramework (10)
MS\Internal\Data\AccessorTable.cs (10)
119foreach (KeyValuePair<AccessorTableKey, AccessorInfo> entry in _table) 176private readonly Dictionary<AccessorTableKey, AccessorInfo> _table = new Dictionary<AccessorTableKey, AccessorInfo>(); 185private readonly struct AccessorTableKey : IEquatable<AccessorTableKey> 196public override bool Equals(object o) => o is AccessorTableKey other && Equals(other); 198public bool Equals(AccessorTableKey other) => 203public static bool operator ==(AccessorTableKey k1, AccessorTableKey k2) => k1.Equals(k2); 205public static bool operator !=(AccessorTableKey k1, AccessorTableKey k2) => !k1.Equals(k2);