Click or drag to resize

CompositeUpdater Constructor (String)

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Construct a CompositeUpdater for a specified method name sequence.

Namespace:  Tangosol.Util.Extractor
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public CompositeUpdater(
	string name
)

Parameters

name
Type: SystemString
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