Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Get the list of all child elements.

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

Syntax

C#
IList ElementList { get; }

Field Value

An IList containing all elements of this IXmlElement.

Remarks

The contents of the list implement the IXmlValue interface. If this IXmlElement is mutable, then the list returned from this method is expected to be mutable as well.
An element should be fully configured before it is added to the list:
  • The IList implementation is permitted (and most implementations are expected) to instantiate its own copy of any IXmlElement objects added to it.
  • Certain properties of an element (such as Name) may not be settable once the element has been added.

See Also