7 instantiations of NameKey
System.Private.Xml (7)
System\Xml\Serialization\NameTable.cs (7)
50
NameKey key = new
NameKey
(name, ns);
59
return _table.TryGetValue(new
NameKey
(qname.Name, qname.Namespace), out obj) ? obj : null;
63
_table[new
NameKey
(qname.Name, qname.Namespace)] = value;
71
return _table.TryGetValue(new
NameKey
(name, ns), out obj) ? obj : null;
75
_table[new
NameKey
(name, ns)] = value;
83
_table.TryGetValue(new
NameKey
(name, ns), out obj);
88
_table[new
NameKey
(name, ns)] = value;
6 references to NameKey
System.Private.Xml (6)
System\Xml\Serialization\NameTable.cs (6)
25
if (!(other is
NameKey
)) return false;
26
NameKey
key = (
NameKey
)other;
41
private readonly Dictionary<
NameKey
, object?> _table = new Dictionary<
NameKey
, object?>();
50
NameKey
key = new NameKey(name, ns);