Click or drag to resize

IXPathResult Interface

Represents the result of the XPath expression evaluation.

Namespace:  DotNetBrowser.Dom.XPath
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
public interface IXPathResult

The IXPathResult type exposes the following members.

Properties
  NameDescription
Public propertyBool
Gets the boolean value of the evaluation result.
Public propertyIterator
Gets the iterator which allows requesting the items from the Chromium engine during the iterating.
Public propertyNode
Gets the DOM node returned as the result of evaluation.
Public propertyNodesSnapshot
Gets the snapshot collection of the DOM nodes. If evaluation result type is not ordered or unordered node iterator then returns null.
Public propertyNumeric
Gets the numeric value of the evaluation result.
Public propertyString
Gets the string value of the evaluation result.
Public propertyType
Gets the result type.
Top
See Also