2 overrides of NamespaceURI
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (1)
80public override String NamespaceURI
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (1)
93public override string NamespaceURI
31 references to NamespaceURI
dotnet-svcutil-lib (31)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (6)
125return _source.NamespaceURI; 932&& child.NamespaceURI == namespaceUri) 1043|| following.NamespaceURI != namespaceUri); 1147&& sibling.NamespaceURI == namespaceUri) 2352return Ref.Equal(node.NamespaceURI, _nsAtom); 2417return Ref.Equal(node.LocalName, localNameAtom) && Ref.Equal(node.NamespaceURI, nsAtom);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttributeCollection.cs (2)
120int offset = FindNodeOffset(node.LocalName, node.NamespaceURI); 316XmlAttribute defattr = parent.OwnerDocument.GetDefaultAttribute((XmlElement)parent, retNode.Prefix, retNode.LocalName, retNode.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (2)
905newNode = CreateElement(node.Prefix, node.LocalName, node.NamespaceURI); 913newNode = CreateAttribute(node.Prefix, node.LocalName, node.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElementList.cs (1)
167(Ref.Equal(_namespaceURI, _asterisk) || curNode.NamespaceURI == _namespaceURI)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNamedNodeMap.cs (2)
37int offset = FindNodeOffset(node.LocalName, node.NamespaceURI); 134if (node.LocalName == localName && node.NamespaceURI == namespaceURI)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (3)
1115return node.NamespaceURI; 1192if (Ref.Equal(node.NamespaceURI, namespaceURI)) 1241if (n.NodeType == XmlNodeType.Element && n.LocalName == localname && n.NamespaceURI == ns)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (1)
122get { return _curNode.NamespaceURI; }
FrameworkFork\Microsoft.Xml\Xml\Serialization\_Events.cs (1)
219get { return _xmlNode.NamespaceURI; }
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (2)
794if (node.LocalName != name || node.NamespaceURI != ns) 795throw new InvalidOperationException(string.Format(ResXml.XmlElementNameMismatch, node.LocalName, node.NamespaceURI, name, ns));
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (1)
1425ThrowTypeCannotBeImportedException(typeName.Name, typeName.Namespace, string.Format(SRSerialization.InvalidAnnotationExpectingText, xmlElement.LocalName, xmlElement.NamespaceURI, child.LocalName, child.NamespaceURI));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OneWayBindingElementImporter.cs (1)
42&& currentNode.NamespaceURI == OneWayPolicyConstants.Namespace
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ReliableSessionBindingElementImporter.cs (2)
108&& (node.NamespaceURI == ns) 350MetadataStrings.WSPolicy.Elements.Policy, node.LocalName, node.NamespaceURI);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\PolicyReader.cs (1)
93string warningMsg = string.Format(SRServiceModel.UnrecognizedPolicyElementInNamespace, node.Name, node.NamespaceURI);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (2)
427if (node is XmlElement && node.LocalName == PolicyName && (node.NamespaceURI == WspNamespace || node.NamespaceURI == Wsp15Namespace))
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy12.cs (3)
94if (node is XmlElement && node.LocalName == WSSecurityPolicy.PolicyName && (node.NamespaceURI == WSSecurityPolicy.WspNamespace || node.NamespaceURI == WSSecurityPolicy.Wsp15Namespace)) 105if (node is XmlElement && node.NamespaceURI == this.WsspNamespaceUri)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\XmlHelper.cs (1)
97if (child.LocalName == childLocalName && child.NamespaceURI == childNamespace)