IXmlElementElementList Property |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Get the list of all child elements.
Namespace:
Tangosol.Run.Xml
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
SyntaxIList ElementList { get; }
Property Value
Type:
IList
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