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

Construct a CompositeUpdater for a specified method name sequence.

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

Syntax

C#
public CompositeUpdater(
	string name
)

Parameters

name
Type: System..::.String
A dot-delimited sequence of N method names which results in a CompositeUpdater that is based on an chain of (N-1) ReflectionExtractor objects and a single ReflectionUpdater.

Remarks

For example: "Address.Zip" property will indicate that the "Address" property should be used to extract an Address object, which will then be used by the "Zip" call.

See Also