SimpleElementGetElement Method |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Get a child element.
Namespace:
Tangosol.Run.Xml
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntaxpublic virtual IXmlElement GetElement(
string name
)
Parameters
- name
- Type: SystemString
The name of child element.
Return Value
Type:
IXmlElement
The specified element as an object implementing IXmlElement, or
null if the specified child element does not exist.
Implements
IXmlElementGetElement(String)
Remarks
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