Click or drag to resize

XPathResultType Enumeration

Represents the XPath result types.

Namespace:  DotNetBrowser.Dom.XPath
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
public enum XPathResultType
Members
  Member nameValueDescription
Unspecified0 The result type is not set. Possibly, the evaluation error occurred.
Any1 The result type is not set. In this case the type is a natural type of the evaluation result.
Number2 The result contains a single number.
String3 The result contains a single string.
Boolean4 The result contains a single boolean value.
UnorderedNodeIterator5 The result represents a set of all nodes matching the XPath expression. The order of nodes in the result is not defined.
OrderedNodeIterator6 The 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.
UnorderedNodeSnapshot7 The result represents the snapshots of all nodes matching the XPath expression. The order of the nodes in the result is not defined.
OrderedNodeSnapshot8 The 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.
AnyUnorderedNode9 The result represents a single node matching the XPath expression. The node is not necessarily the first node in the document that matches the expression.
FirstOrderedNode10 The result represents the first node in the document matching the XPath expression.
See Also