Click or drag to resize

ExtractorEventTransformer Constructor (String)

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Construct a ExtractorEventTransformer that transforms CacheEventArgs's values based on the specified method name.

Namespace:  Tangosol.Util.Transformer
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public ExtractorEventTransformer(
	string methodName
)

Parameters

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