21 implementations of LookupNamespace
PresentationBuildTasks (1)
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
131public override string LookupNamespace( string prefix ) {
System.Activities (1)
System\Activities\Debugger\XmlWrappingReader.cs (1)
243public override string LookupNamespace(string prefix)
System.Xml (18)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
799public override string LookupNamespace(string prefix) {
System\Xml\Core\XmlAsyncCheckReader.cs (2)
798string IXmlNamespaceResolver.LookupNamespace(string prefix) 854string IXmlNamespaceResolver.LookupNamespace(string prefix) {
System\Xml\Core\XmlCharCheckingReader.cs (1)
585string IXmlNamespaceResolver.LookupNamespace( string prefix ) {
System\Xml\Core\XmlSubtreeReader.cs (1)
1018string IXmlNamespaceResolver.LookupNamespace( string prefix ) {
System\Xml\Core\XmlTextReader.cs (1)
299string IXmlNamespaceResolver.LookupNamespace(string prefix) {
System\Xml\Core\XmlTextReaderImpl.cs (1)
1840string IXmlNamespaceResolver.LookupNamespace(string prefix) {
System\Xml\Core\XmlValidatingReader.cs (1)
232string IXmlNamespaceResolver.LookupNamespace(string prefix) {
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
680string IXmlNamespaceResolver.LookupNamespace(string prefix) {
System\Xml\Core\XmlWellFormedWriterHelpers.cs (1)
31string IXmlNamespaceResolver.LookupNamespace(string prefix) {
System\Xml\Core\XsdValidatingReader.cs (1)
1504string IXmlNamespaceResolver.LookupNamespace(string prefix) {
System\Xml\Dom\DocumentSchemaValidator.cs (1)
202public string LookupNamespace(string prefix) {
System\Xml\Dom\DocumentXmlWriter.cs (1)
407string IXmlNamespaceResolver.LookupNamespace(string prefix) {
System\Xml\Dom\XmlNodeReader.cs (1)
1623String IXmlNamespaceResolver.LookupNamespace( string prefix ) {
System\Xml\Schema\XmlAtomicValue.cs (1)
44public string LookupNamespace(string prefix) {
System\Xml\XmlNamespacemanager.cs (1)
247public virtual string LookupNamespace( string prefix ) {
System\Xml\XPath\XPathNavigator.cs (1)
359public virtual string LookupNamespace(string prefix) {
System\Xml\XPath\XPathNavigatorReader.cs (1)
140string IXmlNamespaceResolver.LookupNamespace(string prefix) {
WindowsBase (1)
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
131public override string LookupNamespace( string prefix ) {
18 references to LookupNamespace
System.ServiceModel (2)
System\ServiceModel\Dispatcher\XPathMessageFilter.cs (2)
632string nsNS = resolver.LookupNamespace(nsPrefix); 657while (resolver.LookupNamespace(newPrefix) != null || this.namespaces.LookupNamespace(newPrefix) != null)
System.Xml (16)
System\Xml\Core\XmlAsyncCheckReader.cs (2)
800return readerAsIXmlNamespaceResolver.LookupNamespace(prefix); 855return readerAsIXmlNamespaceResolver.LookupNamespace(prefix);
System\Xml\Core\XmlCharCheckingReader.cs (1)
586return readerAsNSResolver.LookupNamespace( prefix );
System\Xml\Core\XmlSubtreeReader.cs (1)
966return ((IXmlNamespaceResolver)this).LookupNamespace(prefix);
System\Xml\Core\XmlWellFormedWriter.cs (4)
278string defaultNs = predefinedNamespaces.LookupNamespace(string.Empty); 1439string definedNs = predefinedNamespaces.LookupNamespace(prefix); 1493string definedNs = predefinedNamespaces.LookupNamespace(prefix); 1744return (predefinedNamespaces != null) ? predefinedNamespaces.LookupNamespace(prefix) : null;
System\Xml\Core\XsdValidatingReader.cs (4)
1214return thisNSResolver.LookupNamespace(prefix); 1506return coreReaderNSResolver.LookupNamespace(prefix); 1738ns = thisNSResolver.LookupNamespace(attrPrefix); 1773ns = thisNSResolver.LookupNamespace(attrPrefix);
System\Xml\Schema\XmlAtomicValue.cs (1)
118this.nsPrefix = new NamespacePrefixForQName(prefix, nsResolver.LookupNamespace(prefix));
System\Xml\Schema\XmlValueConverter.cs (1)
677ns = nsResolver.LookupNamespace(prefix);
System\Xml\XmlQualifiedName.cs (1)
249string uri = nsmgr.LookupNamespace(prefix);
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
105string ns = this.nsResolver.LookupNamespace(prefix);