2 instantiations of AccessorTableKey
PresentationFramework (2)
MS\Internal\Data\AccessorTable.cs (2)
57if (_table.TryGetValue(new AccessorTableKey(sourceValueType, type, name), out AccessorInfo info)) 88_table[new AccessorTableKey(sourceValueType, type, name)] = value;
10 references to AccessorTableKey
PresentationFramework (10)
MS\Internal\Data\AccessorTable.cs (10)
111foreach (KeyValuePair<AccessorTableKey, AccessorInfo> entry in _table) 168private readonly Dictionary<AccessorTableKey, AccessorInfo> _table = new Dictionary<AccessorTableKey, AccessorInfo>(); 177private readonly struct AccessorTableKey : IEquatable<AccessorTableKey> 188public override bool Equals(object o) => o is AccessorTableKey other && Equals(other); 190public bool Equals(AccessorTableKey other) => 195public static bool operator ==(AccessorTableKey k1, AccessorTableKey k2) => k1.Equals(k2); 197public static bool operator !=(AccessorTableKey k1, AccessorTableKey k2) => !k1.Equals(k2);