2 instantiations of AccessorTableKey
PresentationFramework (2)
MS\Internal\Data\AccessorTable.cs (2)
65
if (_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)
119
foreach (KeyValuePair<
AccessorTableKey
, AccessorInfo> entry in _table)
176
private readonly Dictionary<
AccessorTableKey
, AccessorInfo> _table = new Dictionary<
AccessorTableKey
, AccessorInfo>();
185
private readonly struct AccessorTableKey : IEquatable<
AccessorTableKey
>
196
public override bool Equals(object o) => o is
AccessorTableKey
other && Equals(other);
198
public bool Equals(
AccessorTableKey
other) =>
203
public static bool operator ==(
AccessorTableKey
k1,
AccessorTableKey
k2) => k1.Equals(k2);
205
public static bool operator !=(
AccessorTableKey
k1,
AccessorTableKey
k2) => !k1.Equals(k2);