Returns a list of elements that match the specified XPath. This function supports
the System.Xml XPath syntax.
| C# | Visual Basic | Visual Basic Usage |
public ReadOnlyCollection<TControl> AllByXPath<TControl>( string xpath ) where TControl : new(), Control
Public Function AllByXPath(Of TControl As {New, Control}) ( _ xpath As String _ ) As ReadOnlyCollection(Of TControl)
Dim instance As Find Dim xpath As String Dim returnValue As ReadOnlyCollection(Of TControl) returnValue = instance.AllByXPath(xpath)
- TControl
- Control type to get.
- xpath (String)
- The XPath string. XPath is case-sensitive.
The list of found elements.
