Show / Hide Table of Contents

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 Source

Evaluate(String)

Evaluates an XPath expression.

Declaration
object Evaluate(string expression)
Parameters
Type Name Description
System.String expression

A string that contains an XPath expression.

Returns
Type Description
System.Object

An object that can contain a bool, a double, a string, or an System.Collections.Generic.IEnumerable<T>

| Improve this Doc View Source

SelectElement(String)

Selects an IReadOnlyElement using a XPath expression.

Declaration
IReadOnlyElement SelectElement(string expression)
Parameters
Type Name Description
System.String expression

A string that contains an XPath expression.

Returns
Type Description
IReadOnlyElement

An IReadOnlyElement, or a null IReadOnlyElement (Exists = false).

| Improve this Doc View Source

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 string that contains an XPath expression.

Returns
Type Description
System.Collections.Generic.IEnumerable<IReadOnlyElement>

An System.Collections.Generic.IEnumerable<T> of IReadOnlyElement that contains the selected elements.

  • Improve this Doc
  • View Source
Back to top Copyright © 2015-2017 Microsoft
Generated by DocFX