Click or drag to resize
PropertyVisitor Delegate
Delegate that represents visitor for the Properties class.

Namespace: GemStone.GemFire.Cache
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public delegate void PropertyVisitor(
	ICacheableKey key,
	IGFSerializable value
)

Parameters

key
Type: GemStone.GemFire.CacheICacheableKey
The key of the property.
value
Type: GemStone.GemFire.CacheIGFSerializable
The value of the property.
Remarks
This delegate is passed to the Properties.ForEach function that invokes this delegate for each property having a key and a value.
See Also