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

Construct a ExtractorEventTransformer that transforms CacheEventArgs's values based on the specified method name.

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

Syntax

C#
public ExtractorEventTransformer(
	string methodName
)

Parameters

methodName
Type: System..::.String
The name of the method to invoke via reflection.

Remarks

The name could be a comma-delimited sequence of method names which will result in a MultiExtractor that is based on a corresponding array of IValueExtractor objects; individual array elements will be either ReflectionExtractor or ChainedExtractor objects.

Note: The specified extractor will be applied to both old and new values.

See Also