29 overrides 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.Data (1)
fx\src\data\System\Data\xmlsaver.cs (1)
2996public override String LookupNamespace( String prefix ) {
System.Data.Services.Client (1)
System\Data\Services\Client\Xml\XmlWrappingReader.cs (1)
375public override string LookupNamespace(string prefix)
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\ReaderOutput.cs (1)
444public override string LookupNamespace(string prefix) {
System.IdentityModel (3)
System\IdentityModel\DelegatingXmlDictionaryReader.cs (1)
286public override string LookupNamespace(string prefix)
System\IdentityModel\IdentityModelWrappedXmlDictionaryReader.cs (1)
143public override string LookupNamespace( string namespaceUri )
System\IdentityModel\WrappedXmlDictionaryReader.cs (1)
295public override string LookupNamespace(string namespaceUri)
System.Runtime.Serialization (6)
System\Runtime\Serialization\ExtensionDataReader.cs (1)
239public override string LookupNamespace(string prefix)
System\Runtime\Serialization\XmlSerializableReader.cs (1)
107public override string LookupNamespace(string prefix) { return InnerReader.LookupNamespace(prefix); }
System\Xml\XmlBaseReader.cs (1)
701public override string LookupNamespace(string prefix)
System\Xml\XmlDictionaryReader.cs (1)
1462public override string LookupNamespace(string namespaceUri)
System\Xml\XmlMtomReader.cs (2)
633public override string LookupNamespace(string ns) 1552public override string LookupNamespace(string ns)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\XmlByteStreamReader.cs (1)
226public override string LookupNamespace(string prefix)
System.Xml (12)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
799public override string LookupNamespace(string prefix) {
System\Xml\Core\XmlAsyncCheckReader.cs (1)
460public override string LookupNamespace(string prefix) {
System\Xml\Core\XmlTextReader.cs (1)
232public override String LookupNamespace( String prefix ) {
System\Xml\Core\XmlTextReaderImpl.cs (1)
1343public override String LookupNamespace( String prefix ) {
System\Xml\Core\XmlValidatingReader.cs (1)
172public override String LookupNamespace( String prefix ) {
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
505public override String LookupNamespace( String prefix ) {
System\Xml\Core\XmlWrappingReader.cs (1)
112public override string LookupNamespace( string prefix ) {
System\Xml\Core\XsdCachingReader.cs (1)
499public override string LookupNamespace( string prefix) {
System\Xml\Core\XsdValidatingReader.cs (1)
1213public override string LookupNamespace(string prefix) {
System\Xml\Dom\XmlNodeReader.cs (1)
1487public override String LookupNamespace(string prefix) {
System\Xml\Serialization\XmlCountingReader.cs (1)
74public override string LookupNamespace(string prefix) { return innerReader.LookupNamespace(prefix); }
System\Xml\XPath\XPathNavigatorReader.cs (1)
823public override string LookupNamespace( string prefix ) {
System.Xml.Linq (1)
System\Xml\Linq\XLinq.cs (1)
8513public override string LookupNamespace(string prefix) {
WindowsBase (1)
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
131public override string LookupNamespace( string prefix ) {
71 references to LookupNamespace
PresentationBuildTasks (12)
Base\System\Windows\Markup\XmlCompatibilityReader.cs (1)
634string namespaceName = Reader.LookupNamespace(prefix);
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
132return _reader.LookupNamespace( prefix );
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (1)
821string attributeNamespaceUri = xmlReader.LookupNamespace(xmlReader.Prefix);
BuildTasks\Ms\Internal\MarkupCompiler\ParserExtension.cs (1)
436string attribNamespaceURI = xmlReader.LookupNamespace(xmlReader.Prefix);
Framework\System\Windows\Markup\StyleXamlParser.cs (1)
413string xmlNamespace = TokenReader.XmlReader.LookupNamespace(prefix);
Framework\System\Windows\Markup\TemplateXamlParser.cs (1)
461string xmlNamespace = TokenReader.XmlReader.LookupNamespace(prefix);
Framework\System\Windows\Markup\XamlReaderHelper.cs (6)
184return XmlReader.LookupNamespace(prefix); 1866attributeNamespaceUri != XmlReader.LookupNamespace("")) 2225string attributeNamespaceUri = XmlReader.LookupNamespace(XmlReader.Prefix); 2743attribNamespaceURI = XmlReader.LookupNamespace(prefix); 2754attribNamespaceURI = XmlReader.LookupNamespace(""); 3074string valueNamespaceURI = XmlReader.LookupNamespace(prefix);
PresentationFramework (2)
src\Framework\System\Windows\Annotations\Annotation.cs (1)
682_typeName = new XmlQualifiedName(typeName[1], reader.LookupNamespace(typeName[0]));
src\Framework\System\Windows\Data\XmlDataProvider.cs (1)
524if (root != null && root.NamespaceURI == xmlReader.LookupNamespace(String.Empty))
System.Activities (1)
System\Activities\Debugger\XmlWrappingReader.cs (1)
245return this.baseReader.LookupNamespace(prefix);
System.Data (2)
fx\src\data\System\Data\Common\ObjectStorage.cs (1)
314if (xmlReader.LookupNamespace(_typename[0]) == Keywords.XSDNS) {
fx\src\data\System\Data\xmlsaver.cs (1)
2997return _xmlreader.LookupNamespace(prefix);
System.Data.Linq (1)
Mapping\MappingSource.cs (1)
303return reader.LookupNamespace(reader.Prefix) == XmlMappingConstant.MappingNamespace;
System.Data.Services.Client (1)
System\Data\Services\Client\Xml\XmlWrappingReader.cs (1)
377return this.reader.LookupNamespace(prefix);
System.IdentityModel (15)
System\IdentityModel\CanonicalizationDriver.cs (2)
103writer.WriteStartElement("a", reader.LookupNamespace(String.Empty)); 106string ns = reader.LookupNamespace(this.inclusivePrefixes[i]);
System\IdentityModel\DelegatingXmlDictionaryReader.cs (1)
288return _innerReader.LookupNamespace(prefix);
System\IdentityModel\IdentityModelWrappedXmlDictionaryReader.cs (1)
145return _reader.LookupNamespace( namespaceUri );
System\IdentityModel\SignedXml.cs (3)
783this.context.Add(inclusivePrefixes[i], reader.LookupNamespace(inclusivePrefixes[i])); 926_defaultNamespace = reader.LookupNamespace(String.Empty); 980Context.Add(inclusivePrefixes[i], reader.LookupNamespace(inclusivePrefixes[i]));
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (2)
3052attributeValueXsiTypePrefix = reader.LookupNamespace(String.Empty); 3059attributeValueXsiTypePrefix = reader.LookupNamespace(localPrefix);
System\IdentityModel\Tokens\SamlAuthorityBinding.cs (1)
143nameSpace = reader.LookupNamespace(prefix);
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (3)
2648attributeValueXsiTypePrefix = reader.LookupNamespace(String.Empty); 2655attributeValueXsiTypePrefix = reader.LookupNamespace(localPrefix); 3015nameSpace = reader.LookupNamespace(prefix);
System\IdentityModel\WrappedXmlDictionaryReader.cs (1)
297return this.reader.LookupNamespace(namespaceUri);
System\IdentityModel\XmlUtil.cs (1)
169ns = reader.LookupNamespace(prefix);
System.Runtime.Serialization (6)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
1158internal string LookupNamespace(string prefix) { return reader.LookupNamespace(prefix); }
System\Runtime\Serialization\XmlSerializableReader.cs (1)
107public override string LookupNamespace(string prefix) { return InnerReader.LookupNamespace(prefix); }
System\Xml\XmlDictionaryReader.cs (2)
709namespaceUri = LookupNamespace(prefix); 1464return reader.LookupNamespace(namespaceUri);
System\Xml\XmlMtomReader.cs (2)
635return xmlReader.LookupNamespace(ns); 1554return parentReader.LookupNamespace(ns);
System.ServiceModel (3)
System\ServiceModel\Dispatcher\XPathMessageFilter.cs (1)
577ns = reader.LookupNamespace(prefix);
System\ServiceModel\Security\XmlHelper.cs (1)
118string ns = reader.LookupNamespace(prefix);
System\ServiceModel\XmlUtil.cs (1)
114ns = reader.LookupNamespace(prefix);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\SerializationUtility.cs (1)
29ns = reader.LookupNamespace(prefix);
System.Web.Services (1)
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
853ns = reader.LookupNamespace(prefix);
System.Workflow.ComponentModel (12)
AuthoringOM\Design\ComponentSerializationService.cs (1)
205if (eventArgs.XmlReader.LookupNamespace(eventArgs.XmlReader.Prefix) == StandardXomlKeys.Definitions_XmlNs &&
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (8)
83if (eventArgs.XmlReader.LookupNamespace(eventArgs.XmlReader.Prefix) == StandardXomlKeys.Definitions_XmlNs) 227XmlQualifiedName xmlQualifiedName = new XmlQualifiedName(decodedName, reader.LookupNamespace(reader.Prefix)); 332XmlQualifiedName xmlQualifiedName = new XmlQualifiedName(reader.LocalName, reader.LookupNamespace(reader.Prefix)); 429XmlQualifiedName extendedPropertyQualifiedName = new XmlQualifiedName(reader.LocalName, reader.LookupNamespace(reader.Prefix)); 459XmlQualifiedName xmlQualifiedName = new XmlQualifiedName(reader.LocalName, reader.LookupNamespace(reader.Prefix)); 2064ownerType = serializationManager.GetType(new XmlQualifiedName(ownerTypeName, reader.LookupNamespace(reader.Prefix))); 2495Type type = serializationManager.GetType(new XmlQualifiedName(typename, reader.LookupNamespace(prefix))); 2499type = serializationManager.GetType(new XmlQualifiedName(typename, reader.LookupNamespace(prefix)));
AuthoringOM\Serializer\XamlInterfaces.cs (3)
185type = manager.GetType(new XmlQualifiedName(typename, reader.LookupNamespace(prefix))); 191if (manager.XmlNamespaceBasedMappings.TryGetValue(reader.LookupNamespace(prefix), out xmlnsMappings) && xmlnsMappings != null && xmlnsMappings.Count > 0) 196type = manager.GetType(new XmlQualifiedName(typename, reader.LookupNamespace(string.Empty)));
System.Xml (12)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
801return this.textXmlReader.LookupNamespace(prefix);
System\Xml\Core\XmlAsyncCheckReader.cs (1)
462return coreReader.LookupNamespace(prefix);
System\Xml\Core\XmlWrappingReader.cs (1)
113return reader.LookupNamespace( prefix );
System\Xml\Core\XsdCachingReader.cs (1)
500return coreReader.LookupNamespace(prefix);
System\Xml\Schema\XsdBuilder.cs (1)
127ns = reader.LookupNamespace(prefix);
System\Xml\Serialization\XmlCountingReader.cs (1)
74public override string LookupNamespace(string prefix) { return innerReader.LookupNamespace(prefix); }
System\Xml\Serialization\XmlSerializationReader.cs (6)
782attr.Value = r.LookupNamespace("") + ":" + attr.Value; 785attr.Value = r.LookupNamespace(attr.Value.Substring(0, colon)) + ":" + attr.Value.Substring(colon + 1); 852XmlQualifiedName empty = new XmlQualifiedName(string.Empty, r.LookupNamespace("")); 1123return new XmlQualifiedName(r.NameTable.Add(value), r.LookupNamespace(String.Empty)); 1126string ns = r.LookupNamespace(prefix); 1803xsiTypeNs = Reader.LookupNamespace((colon >= 0) ? value.Substring(0, colon) : "");
WindowsBase (2)
Base\System\Windows\Markup\XmlCompatibilityReader.cs (1)
634string namespaceName = Reader.LookupNamespace(prefix);
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
132return _reader.LookupNamespace( prefix );