.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            Get or set the name of the element.
            
 
    Namespace: 
   Tangosol.Run.Xml
    Assembly:
   Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxstring Name { get; set; }Property Value
Type: 
String
            The element name.
            
Remarks
            Setter is intended primarily to be utilized to configure a newly
            instantiated element before adding it as a child element to
            another element.
            Implementations of this interface that support read-only
            documents are expected to throw InvalidOperationException
            from this method if the document (or this element) is in a
            read-only state.
            If this IXmlElement has a parent IXmlElement, then the
            implementation of this interface is permitted to throw
            InvalidOperationException from this method. This results
            from typical document implementations in which the name of an
            element that is a child of another element is immutable; the W3C
            DOM interfaces are one example.
            
See Also