Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Find a child element with the specified '/'-delimited path.

Namespace: Tangosol.Run.Xml
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
IXmlElement FindElement(
	string path
)

Parameters

path
Type: System..::..String
Element path.

Return Value

The specified element as an object implementing IXmlElement, or null if the specified child element does not exist.

Remarks

This is based on a subset of the XPath specification, supporting:
  • Leading '/' to specify root
  • Use of '/' as a path delimiter
  • Use of '..' to specify parent
This is a convenience method. Elements are accessed and manipulated via the list returned from ElementList.
If multiple child elements exist that have the specified name, then the behavior of this method is undefined, and it is permitted to return any one of the matching elements, to return null, or to throw an arbitrary runtime exception.

See Also