Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Get the value as an object.

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

Syntax

C#
public virtual Object Value { get; }

Field Value

The value as an object or null if the IXmlValue does not have a value; attributes never have a null value.

Implements

IXmlValue..::.Value

Remarks

The following types are supported:
  • Boolean
  • Integer
  • Long
  • Double
  • Decimal
  • String
  • Binary
  • DateTime
It is always legal for an implementation to return the value as a string, for example returning a binary value in a Base64 encoding. This method exists to allow one value to copy from another value.

See Also