2 overrides of Get
System.Private.DataContractSerialization (1)
System\Xml\XmlBaseReader.cs (1)
3131public override string? Get(string value)
System.Private.Xml (1)
System\Xml\NameTable.cs (1)
115public override string? Get(string value)
70 references to Get
ReachFramework (1)
Packaging\XpsDocument.cs (1)
826if (xmlReader.NameTable.Get(XpsS0Markup.VersionExtensiblityNamespace) != null)
System.Data.Common (15)
System\Data\XmlToDatasetMap.cs (15)
154string? tableLocalName = nameTable.Get(table.EncodedTableName); 155string? tableNamespace = nameTable.Get(table.Namespace); 180nameTable.Get(_tableLocalName) ?? // Look it up in nametable 185string? tableNamespace = nameTable.Get(table.Namespace); // Look ip table namespace 209string? columnLocalName = nameTable.Get(col.EncodedColumnName); 210string? columnNamespace = nameTable.Get(col.Namespace); 232nameTable.Get(_columnLocalName) ?? // Look it up in a name table 237string? columnNamespace = nameTable.Get(col.Namespace); // Get column namespace from nametable 295nameTable.Get(dataSet.Namespace) ?? // Attempt to look up DataSet namespace in the name table 328nameTable.Get(_tableLocalName) ?? 332nameTable.Get(r.ChildTable.Namespace) ?? 401nameTable.Get(_tableLocalName) ?? 405nameTable.Get(r.ChildTable.Namespace) ?? 520if (nameTable.Get(tempColumnName) == null) 524string? columnNamespace = nameTable.Get(col.Namespace);
System.Private.Xml (54)
System\Xml\BinaryXml\XmlBinaryReader.cs (3)
1858string? atomizedNamespaceName = _xnt.Get(namespaceName); 3199if ((object)decl.prefix != (object?)this._xnt.Get(decl.prefix)) 3201if ((object)decl.uri != (object?)this._xnt.Get(decl.uri))
System\Xml\Cache\XPathDocumentIterator.cs (2)
67_localName = parent.NameTable.Get(name); 180_localName = root.NameTable.Get(name);
System\Xml\Cache\XPathDocumentNavigator.cs (5)
299_atomizedLocalName = (localName != null) ? NameTable.Get(localName) : null; 551_atomizedLocalName = (localName != null) ? NameTable.Get(localName) : null; 563_atomizedLocalName = (localName != null) ? NameTable.Get(localName) : null; 613_atomizedLocalName = (localName != null) ? NameTable.Get(localName) : null; 1002_atomizedLocalName = (localName != null) ? NameTable.Get(localName) : null;
System\Xml\Cache\XPathNode.cs (2)
211Debug.Assert(localName == null || (object?)Document.NameTable.Get(localName) == (object)localName, "localName must be atomized."); 223Debug.Assert(localName == null || (object?)Document.NameTable.Get(localName) == (object)localName, "localName must be atomized.");
System\Xml\Core\XmlTextReaderImpl.cs (5)
1050namespaceURI = (namespaceURI == null) ? string.Empty : _nameTable.Get(namespaceURI); 1051string? localNameAtomized = _nameTable.Get(localName); 1105string? namespaceURIAtomized = (namespaceURI == null) ? string.Empty : _nameTable.Get(namespaceURI); 1106string? localNameAtomized = _nameTable.Get(localName); 8817string? atomizedName = _nameTable.Get(name);
System\Xml\Core\XsdCachingReader.cs (6)
264namespaceURI = (namespaceURI == null) ? string.Empty : _coreReaderNameTable.Get(namespaceURI); 265string? atomizedName = _coreReaderNameTable.Get(name); 334ns = (ns == null) ? string.Empty : _coreReaderNameTable.Get(ns); 335string? atomizedName = _coreReaderNameTable.Get(name); 712string? atomizedName = _coreReaderNameTable.Get(name); 732string? atomizedName = _coreReaderNameTable.Get(name);
System\Xml\Core\XsdValidatingReader.cs (8)
1144string? atomizedNamespaceURI = (namespaceURI == null) ? string.Empty : _coreReaderNameTable.Get(namespaceURI); 1145string? atomizedName = _coreReaderNameTable.Get(name); 1220string? atomizedName = _coreReaderNameTable.Get(name); 1221ns = ns != null ? _coreReaderNameTable.Get(ns) : string.Empty; 2236Debug.Assert(_coreReaderNameTable.Get(localName) != null); 2237Debug.Assert(_coreReaderNameTable.Get(ns) != null); 2281Debug.Assert(_coreReaderNameTable.Get(attrLocalName) != null); 2282Debug.Assert(_coreReaderNameTable.Get(ns) != null);
System\Xml\Dom\DocumentSchemaValidator.cs (4)
338Debug.Assert(_nameTable.Get(attr.NamespaceURI) != null); 339Debug.Assert(_nameTable.Get(attr.LocalName) != null); 687Debug.Assert(_nameTable.Get(attr.NamespaceURI) != null); 688Debug.Assert(_nameTable.Get(attr.LocalName) != null);
System\Xml\Dom\DocumentXPathNavigator.cs (5)
1452string? nsAtom = _document.NameTable.Get(namespaceURI); 1458string? localNameAtom = _document.NameTable.Get(localName); 2312Debug.Assert(Ref.Equal(nav.NameTable.Get(nsAtom), nsAtom)); 2370Debug.Assert(Ref.Equal(nav.NameTable.Get(localNameAtom), localNameAtom)); 2371Debug.Assert(Ref.Equal(nav.NameTable.Get(nsAtom), nsAtom));
System\Xml\Dom\XmlElementList.cs (2)
87_localName = nt.Get(localName); 88_namespaceURI = nt.Get(namespaceURI);
System\Xml\Dom\XmlName.cs (1)
109Debug.Assert(Ref.Equal(_name, ownerDoc.NameTable.Get(_name)));
System\Xml\Dom\XmlNode.cs (1)
1084pref = doc.NameTable.Get(pref);
System\Xml\XPath\XPathDocument.cs (2)
178Debug.Assert((object?)_nameTable.Get(string.Empty) == (object)string.Empty, "NameTable must contain atomized string.Empty"); 179xmlnsUri = _nameTable.Get(XmlReservedNs.NsXmlNs);
System\Xml\XPath\XPathNavigator.cs (1)
1631string? atomizedLocalName = (localName != null) ? NameTable.Get(localName) : null;
System\Xml\Xsl\Runtime\WhitespaceRuleLookup.cs (2)
90Debug.Assert(localName != null && (object?)_nameTable.Get(localName) == (object)localName); 91Debug.Assert(namespaceName != null && (object?)_nameTable.Get(namespaceName) == (object)namespaceName);
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
106string? name = nameTableDefault.Get(names[i]);
System\Xml\Xsl\Xslt\XsltInput.cs (1)
1099Debug.Assert(Ref.Equal(_atoms.NameTable.Get(nsUri), nsUri), "Namespaces must be atomized");
System\Xml\Xsl\XsltOld\OutKeywords.cs (1)
116Debug.Assert((object)keyword == (object?)_NameTable.Get(keyword));
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (1)
184} while (_nameTable.Get(prefix) != null);
System\Xml\Xsl\XsltOld\ReaderOutput.cs (1)
525string? atomizedPrefix = _nameTable.Get(prefix);