Delegate that represents visitor for the Properties class.
Namespace: GemStone.GemFire.Cache
Assembly: GemStone.GemFire.Cache (in GemStone.GemFire.Cache.dll)
Version: 2.7.0.0
Syntax
| C# |
|---|
public delegate void PropertyVisitor( ICacheableKey key, IGFSerializable value ) |
| Visual Basic (Declaration) |
|---|
Public Delegate Sub PropertyVisitor ( _ key As ICacheableKey, _ value As IGFSerializable _ ) |
| Visual C++ |
|---|
public delegate void PropertyVisitor ( ICacheableKey^ key, IGFSerializable^ value ) |
Parameters
- key
- ICacheableKey
The key of the property.
- value
- IGFSerializable
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
GemStone.GemFire.Cache Namespace