Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.1.0)
E69639-01
Get or set the name of the element.

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

Syntax

C#
string Name { get; set; }

Field Value

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