10 overrides of XPNodeType
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (1)
392internal override XPathNodeType XPNodeType
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlCDATASection.cs (1)
90internal override XPathNodeType XPNodeType
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlComment.cs (1)
56internal override XPathNodeType XPNodeType { get { return XPathNodeType.Comment; } }
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
1757internal override XPathNodeType XPNodeType { get { return XPathNodeType.Root; } }
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocumentFragment.cs (1)
198internal override XPathNodeType XPNodeType { get { return XPathNodeType.Root; } }
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (1)
624internal override XPathNodeType XPNodeType { get { return XPathNodeType.Element; } }
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlProcessingInstruction.cs (1)
107internal override XPathNodeType XPNodeType { get { return XPathNodeType.ProcessingInstruction; } }
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlSignificantWhitespace.cs (1)
107internal override XPathNodeType XPNodeType
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlText.cs (1)
135internal override XPathNodeType XPNodeType
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlWhitespace.cs (1)
107internal override XPathNodeType XPNodeType
8 references to XPNodeType
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (1)
147if (nodeToValidate.XPNodeType == XPathNodeType.Namespace) goto default;
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (7)
103return (XPathNodeType)_source.XPNodeType; 961if (((1 << (int)child.XPNodeType) & mask) != 0) 1130while (((1 << (int)following.XPNodeType) & mask) == 0); 1182if (((1 << (int)sibling.XPNodeType) & mask) != 0) 1329if (node1.XPNodeType == XPathNodeType.Attribute) 1331if (node2.XPNodeType == XPathNodeType.Attribute) 1357if (node2.XPNodeType == XPathNodeType.Attribute)