IXmlElementElementList Property  | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            Get the list of all child elements.
            
 
    Namespace: 
   Tangosol.Run.Xml
    Assembly:
   Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
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