2 instantiations of AccessorTableKey
PresentationFramework (2)
MS\Internal\Data\AccessorTable.cs (2)
57
if (_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)
111
foreach (KeyValuePair<
AccessorTableKey
, AccessorInfo> entry in _table)
168
private readonly Dictionary<
AccessorTableKey
, AccessorInfo> _table = new Dictionary<
AccessorTableKey
, AccessorInfo>();
177
private readonly struct AccessorTableKey : IEquatable<
AccessorTableKey
>
188
public override bool Equals(object o) => o is
AccessorTableKey
other && Equals(other);
190
public bool Equals(
AccessorTableKey
other) =>
195
public static bool operator ==(
AccessorTableKey
k1,
AccessorTableKey
k2) => k1.Equals(k2);
197
public static bool operator !=(
AccessorTableKey
k1,
AccessorTableKey
k2) => !k1.Equals(k2);