SimpleValue Constructor (Object, Boolean, Boolean) |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Construct a SimpleValue.
Namespace:
Tangosol.Run.Xml
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntaxpublic SimpleValue(
Object value,
bool isAttribute,
bool isReadOnly
)
Parameters
- value
- Type: SystemObject
The initial value for this SimpleValue.
- isAttribute
- Type: SystemBoolean
true if this SimpleValue is an element attribute value;
false if an element's content's value.
- isReadOnly
- Type: SystemBoolean
true if this SimpleValue is intended to be read-only once
the constructor has finished.
Exceptions
Remarks
Constructs an element's content or attribute value from the
passed string value, and also allows the caller to specify that
the value is immutable. The string should be un-escaped by this
point; it must not still be in the form of the CDATA construct.
See Also