SimpleElementName Property |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Get or set the name of the element.
Namespace:
Tangosol.Run.Xml
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntaxpublic virtual string Name { get; set; }
Property Value
Type:
String
The element name.
Implements
IXmlElementName
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