Interface IAmlXPath
Class which supports executing XPath against an IReadOnlyElement
Namespace: Innovator.Client
Assembly: Innovator.Client.dll
Syntax
public interface IAmlXPath
Methods
| Improve this Doc View SourceEvaluate(String)
Evaluates an XPath expression.
Declaration
object Evaluate(string expression)
Parameters
Type | Name | Description |
---|---|---|
System.String | expression | A |
Returns
Type | Description |
---|---|
System.Object | An object that can contain a |
SelectElement(String)
Selects an IReadOnlyElement using a XPath expression.
Declaration
IReadOnlyElement SelectElement(string expression)
Parameters
Type | Name | Description |
---|---|---|
System.String | expression | A |
Returns
Type | Description |
---|---|
IReadOnlyElement | An IReadOnlyElement, or a null IReadOnlyElement (Exists = |
SelectElements(String)
Selects a collection of IReadOnlyElement elements using a XPath expression.
Declaration
IEnumerable<IReadOnlyElement> SelectElements(string expression)
Parameters
Type | Name | Description |
---|---|---|
System.String | expression | A |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IReadOnlyElement> | An System.Collections.Generic.IEnumerable<T> of IReadOnlyElement that contains the selected elements. |