XPathResultType Enumeration | 
 
                Represents the XPath result types.
            
 
    Namespace: 
   DotNetBrowser.Dom.XPath
    Assembly:
   DotNetBrowser (in DotNetBrowser.dll) Version: 2.27.6
Syntaxpublic enum XPathResultType
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Unspecified | 0 | 
                The result type is not set. Possibly, the evaluation error occurred.
             | 
 | Any | 1 | 
                The result type is not set. In this case the type is a natural type of the evaluation result.
             | 
 | Number | 2 | 
                The result contains a single number.
             | 
 | String | 3 | 
                The result contains a single string.
             | 
 | Boolean | 4 | 
                The result contains a single boolean value.
             | 
 | UnorderedNodeIterator | 5 | 
                The result represents a set of all nodes matching the XPath expression.
                The order of nodes in the result is not defined.
             | 
 | OrderedNodeIterator | 6 | 
                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.
             | 
 | UnorderedNodeSnapshot | 7 | 
                The result represents the snapshots of all nodes matching the XPath expression.
                The order of the nodes in the result is not defined.
             | 
 | OrderedNodeSnapshot | 8 | 
                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.
             | 
 | AnyUnorderedNode | 9 | 
                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.
             | 
 | FirstOrderedNode | 10 | 
                The result represents the first node in the document matching the XPath expression.
             | 
See Also