Delegate that represents visitor for the Properties class.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic delegate void PropertyVisitor(
ICacheableKey key,
IGFSerializable value
)
Public Delegate Sub PropertyVisitor (
key As ICacheableKey,
value As IGFSerializable
)
public delegate void PropertyVisitor(
ICacheableKey^ key,
IGFSerializable^ value
)
type PropertyVisitor =
delegate of
key : ICacheableKey *
value : IGFSerializable -> unit
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