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

Extract the value from the passed object.

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

Syntax

C#
Object Extract(
	Object target
)

Parameters

target
Type: System..::.Object
An object to retrieve the value from.

Return Value

The extracted value as an object; null is an acceptable value.

Remarks

The returned value may be null.

Exceptions

ExceptionCondition
System..::.InvalidCastException If this IValueExtractor is incompatible with the passed object to extract a value from and the implementation requires the passed object to be of a certain type.
System..::.ArgumentException If this IValueExtractor cannot handle the passed object for any other reason; an implementor should include a descriptive message.

See Also