Enum XPathResultType
- Namespace
- DotNetBrowser.Dom.XPath
- Assembly
- DotNetBrowser.dll
Represents the XPath result types.
public enum XPathResultType
Fields
Any = 1The result type is not set. In this case the type is a natural type of the evaluation result.
AnyUnorderedNode = 9The result represents a single node matching the XPath expression. The node is not necessarily the first node in the document that matches the expression.
Boolean = 4The result contains a single boolean value.
FirstOrderedNode = 10The result represents the first node in the document matching the XPath expression.
Number = 2The result contains a single number.
OrderedNodeIterator = 6The result represents a set of all nodes matching the XPath expression. The nodes in the result are in the same order that they appear in the document.
OrderedNodeSnapshot = 8The result represents the snapshots of all nodes matching the XPath expression. The nodes in the result are in the same order that they appear in the document.
String = 3The result contains a single string.
UnorderedNodeIterator = 5The result represents a set of all nodes matching the XPath expression. The order of nodes in the result is not defined.
UnorderedNodeSnapshot = 7The result represents the snapshots of all nodes matching the XPath expression. The order of the nodes in the result is not defined.
Unspecified = 0The result type is not set. Possibly, the evaluation error occurred.