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