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

Constructs a new FilterEventArgs.

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

Syntax

C#
public FilterEventArgs(
	IObservableCache cache,
	CacheEventType type,
	Object key,
	Object valueOld,
	Object valueNew,
	bool isSynthetic,
	IFilter[] filters
)

Parameters

cache
Type: Tangosol.Net.Cache..::.IObservableCache
The IObservableCache object that fired the event.
type
Type: Tangosol.Net.Cache..::.CacheEventType
This event's type.
key
Type: System..::.Object
The key into the cache.
valueOld
Type: System..::.Object
The old value.
valueNew
Type: System..::.Object
The new value.
isSynthetic
Type: System..::.Boolean
true if the event is caused by the cache internal processing such as eviction or loading.
filters
Type: array< Tangosol.Util..::.IFilter >[]()[]
An array of filters caused this event.

See Also