Click or drag to resize

XmlHelperFindElement Method (IXmlElement, String)

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

Namespace:  Tangosol.Run.Xml
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public static IXmlElement FindElement(
	IXmlElement xml,
	string path
)

Parameters

xml
Type: Tangosol.Run.XmlIXmlElement
An IXmlElement.
path
Type: SystemString
The path to follow to find the desired XML element.

Return Value

Type: IXmlElement
The child element with the specified path or null if such a child element does not exist.
Remarks
The path format 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
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