6 overrides of NamespaceURI
System.Data.Common (1)
System\Xml\DataDocumentXPathNavigator.cs (1)
44
public override string
NamespaceURI
=> _curNode.NamespaceURI;
System.Private.Xml (4)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
171
public override string
NamespaceURI
System\Xml\Dom\DocumentXPathNavigator.cs (1)
110
public override string
NamespaceURI
System\Xml\XPath\XPathNavigatorReader.cs (1)
1163
public override string
NamespaceURI
System\Xml\Xsl\Runtime\RtfNavigator.cs (1)
63
public override string
NamespaceURI
System.Private.Xml.Linq (1)
System\Xml\XPath\XNodeNavigator.cs (1)
169
public override string
NamespaceURI
42 references to NamespaceURI
System.Private.Xml (42)
System\Xml\Core\XmlWriter.cs (2)
438
WriteStartElement(navigator.Prefix, navigator.LocalName, navigator.
NamespaceURI
);
448
WriteStartAttribute(navigator.Prefix, navigator.LocalName, navigator.
NamespaceURI
);
System\Xml\Core\XmlWriterAsync.cs (2)
438
await WriteStartElementAsync(navigator.Prefix, navigator.LocalName, navigator.
NamespaceURI
).ConfigureAwait(false);
448
await WriteStartAttributeAsync(navigator.Prefix, navigator.LocalName, navigator.
NamespaceURI
).ConfigureAwait(false);
System\Xml\XPath\Internal\AttributeQuery.cs (1)
48
Debug.Assert(!currentNode.
NamespaceURI
.Equals(XmlReservedNs.NsXmlNs));
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
90
if (_nsUri.Equals(e.
NamespaceURI
))
System\Xml\XPath\Internal\NodeFunctions.cs (1)
53
return argVal.
NamespaceURI
;
System\Xml\XPath\Internal\XPathAxisIterator.cs (1)
83
(uri == nav.
NamespaceURI
)
System\Xml\XPath\XPathNavigator.cs (5)
607
if (localName == LocalName && namespaceURI ==
NamespaceURI
)
706
if (NodeType == XPathNodeType.Element && localName == LocalName && namespaceURI ==
NamespaceURI
)
795
|| namespaceURI !=
NamespaceURI
);
871
if (NodeType == XPathNodeType.Element && localName == LocalName && namespaceURI ==
NamespaceURI
)
1634
if (NodeType == XPathNodeType.Element && atomizedLocalName == LocalName && namespaceURI ==
NamespaceURI
)
System\Xml\XPath\XPathNavigatorKeyComparer.cs (1)
47
hashCode ^= nav.
NamespaceURI
.GetHashCode();
System\Xml\XPath\XPathNavigatorReader.cs (1)
208
return _nav.
NamespaceURI
;
System\Xml\Xsl\Runtime\XmlNavigatorFilter.cs (1)
127
return navigator.LocalName != _localName || navigator.
NamespaceURI
!= _namespaceUri;
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (7)
1106
WriteStartElement(navigator.Prefix, navigator.LocalName, navigator.
NamespaceURI
);
1110
WriteStartElementUnchecked(navigator.Prefix, navigator.LocalName, navigator.
NamespaceURI
);
1120
WriteStartAttribute(navigator.Prefix, navigator.LocalName, navigator.
NamespaceURI
);
1124
WriteStartAttributeUnchecked(navigator.Prefix, navigator.LocalName, navigator.
NamespaceURI
);
1211
WriteEndElementUnchecked(navigator.Prefix, navigator.LocalName, navigator.
NamespaceURI
);
1222
if (navigator.
NamespaceURI
.Length == 0)
1485
ns = navigator.
NamespaceURI
;
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (10)
435
return (object)n1.LocalName == (object)n2.LocalName && (object)n1.
NamespaceURI
== (object)n2.
NamespaceURI
;
438
return (n1.LocalName == n2.LocalName) && (n1.
NamespaceURI
== n2.
NamespaceURI
);
450
(object)GetAtomizedName(indexNamespaceUri) == (object)navigator.
NamespaceURI
);
454
return (GetAtomizedName(indexLocalName) == navigator.LocalName) && (GetAtomizedName(indexNamespaceUri) == navigator.
NamespaceURI
);
801
return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.New(nav.LocalName, nav.
NamespaceURI
), XmlSchemaComplexType.UntypedAnyType, false);
803
return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.New(nav.LocalName, nav.
NamespaceURI
), nav.XmlType, nav.SchemaInfo!.SchemaElement!.IsNillable);
807
return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.New(nav.LocalName, nav.
NamespaceURI
), DatatypeImplementation.UntypedAtomicType, false);
809
return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.New(nav.LocalName, nav.
NamespaceURI
), nav.XmlType, false);
System\Xml\Xsl\Runtime\XmlSequenceWriter.cs (4)
243
_xwrt.WriteEndElement(nav.Prefix, nav.LocalName, nav.
NamespaceURI
);
268
_xwrt.WriteFullEndElement(nav.Prefix, nav.LocalName, nav.
NamespaceURI
);
283
_xwrt.WriteStartElement(nav.Prefix, nav.LocalName, nav.
NamespaceURI
);
288
_xwrt.WriteStartAttribute(nav.Prefix, nav.LocalName, nav.
NamespaceURI
);
System\Xml\Xsl\Runtime\XsltLibrary.cs (2)
540
return nt1 == nt2 && Ref.Equal(nav1.LocalName, nav2.LocalName) && Ref.Equal(nav1.
NamespaceURI
, nav2.
NamespaceURI
);
System\Xml\Xsl\XsltOld\CopyAttributesAction.cs (1)
103
return processor.BeginEvent(XPathNodeType.Attribute, node.Prefix, node.LocalName, node.
NamespaceURI
, false);
System\Xml\Xsl\XsltOld\NavigatorInput.cs (1)
142
return _Navigator.
NamespaceURI
;
System\Xml\Xsl\XsltOld\Processor.cs (1)
851
return BeginEvent(node.NodeType, node.Prefix, node.LocalName, node.
NamespaceURI
, emptyflag);