21 overrides of LookupNamespace
System.Data.Common (1)
System\Data\xmlsaver.cs (1)
3505
public override string?
LookupNamespace
(string prefix)
System.IO.Packaging (1)
System\IO\Packaging\XmlWrappingReader.cs (1)
105
public override string?
LookupNamespace
(string prefix)
System.Private.DataContractSerialization (4)
System\Runtime\Serialization\ExtensionDataReader.cs (1)
228
public override string?
LookupNamespace
(string prefix)
System\Runtime\Serialization\XmlSerializableReader.cs (1)
108
public override string?
LookupNamespace
(string prefix) { return InnerReader.LookupNamespace(prefix); }
System\Xml\XmlBaseReader.cs (1)
673
public override string?
LookupNamespace
(string prefix)
System\Xml\XmlDictionaryReader.cs (1)
1428
public override string?
LookupNamespace
(string namespaceUri)
System.Private.Xml (12)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
900
public override string?
LookupNamespace
(string prefix)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
544
public override string?
LookupNamespace
(string prefix)
System\Xml\Core\XmlTextReader.cs (1)
266
public override string?
LookupNamespace
(string prefix)
System\Xml\Core\XmlTextReaderImpl.cs (1)
1408
public override string?
LookupNamespace
(string prefix)
System\Xml\Core\XmlValidatingReader.cs (1)
199
public override string?
LookupNamespace
(string prefix)
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
593
public override string?
LookupNamespace
(string prefix)
System\Xml\Core\XmlWrappingReader.cs (1)
118
public override string?
LookupNamespace
(string prefix)
System\Xml\Core\XsdCachingReader.cs (1)
577
public override string?
LookupNamespace
(string prefix)
System\Xml\Core\XsdValidatingReader.cs (1)
1554
public override string?
LookupNamespace
(string prefix)
System\Xml\Dom\XmlNodeReader.cs (1)
1759
public override string?
LookupNamespace
(string prefix)
System\Xml\XPath\XPathNavigatorReader.cs (1)
952
public override string?
LookupNamespace
(string prefix)
System\Xml\Xsl\XsltOld\ReaderOutput.cs (1)
523
public override string?
LookupNamespace
(string prefix)
System.Private.Xml.Linq (1)
System\Xml\Linq\XNodeReader.cs (1)
584
public override string?
LookupNamespace
(string prefix)
System.ServiceModel.Primitives (2)
Internals\System\Xml\XmlMtomReader.cs (2)
685
public override string
LookupNamespace
(string ns)
1603
public override string
LookupNamespace
(string ns)
23 references to LookupNamespace
System.Data.Common (2)
System\Data\Common\ObjectStorage.cs (1)
379
if (xmlReader.
LookupNamespace
(_typename[0]) == Keywords.XSDNS)
System\Data\xmlsaver.cs (1)
3507
return _xmlreader.
LookupNamespace
(prefix);
System.IO.Packaging (3)
System\IO\Packaging\PartBasedPackageProperties.cs (1)
627
if (!object.ReferenceEquals(ns, reader.
LookupNamespace
(typeValue.Substring(0, index)))
System\IO\Packaging\XmlCompatibilityReader.cs (1)
597
string? namespaceName = Reader.
LookupNamespace
(prefix);
System\IO\Packaging\XmlWrappingReader.cs (1)
107
return _reader.
LookupNamespace
(prefix);
System.Private.DataContractSerialization (4)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
1178
internal string? LookupNamespace(string prefix) { return reader.
LookupNamespace
(prefix); }
System\Runtime\Serialization\XmlSerializableReader.cs (1)
108
public override string? LookupNamespace(string prefix) { return InnerReader.
LookupNamespace
(prefix); }
System\Xml\XmlDictionaryReader.cs (2)
678
namespaceUri =
LookupNamespace
(prefix)!;
1430
return _reader.
LookupNamespace
(namespaceUri);
System.Private.Xml (10)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
547
return _coreReader.
LookupNamespace
(prefix);
System\Xml\Core\XmlWrappingReader.cs (1)
120
return reader.
LookupNamespace
(prefix);
System\Xml\Core\XsdCachingReader.cs (1)
579
return _coreReader.
LookupNamespace
(prefix);
System\Xml\Schema\XsdBuilder.cs (1)
129
_nsMgr.LookupNamespace(prefix) ?? _reader.
LookupNamespace
(prefix);
System\Xml\Serialization\XmlSerializationReader.cs (6)
807
attr.Value = $"{_r.
LookupNamespace
("")}:{attr.Value}";
811
attr.Value = $"{_r.
LookupNamespace
(attr.Value.Substring(0, colon))}:{attr.Value.AsSpan(colon + 1)}";
875
XmlQualifiedName empty = new XmlQualifiedName(string.Empty, _r.
LookupNamespace
(""));
1184
return new XmlQualifiedName(_r.NameTable.Add(value), _r.
LookupNamespace
(string.Empty));
1188
string? ns = _r.
LookupNamespace
(prefix);
1955
xsiTypeNs = Reader.
LookupNamespace
((colon >= 0) ? value.Substring(0, colon) : "");
System.ServiceModel.Primitives (4)
Internals\System\Xml\XmlMtomReader.cs (2)
687
return _xmlReader.
LookupNamespace
(ns);
1605
return _parentReader.
LookupNamespace
(ns);
System\ServiceModel\Security\XmlHelper.cs (1)
117
string ns = reader.
LookupNamespace
(prefix);
System\ServiceModel\XmlUtil.cs (1)
136
ns = reader.
LookupNamespace
(prefix);