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