Click or drag to resize
PropertyVisitorGenericTPropKey, TPropValue Delegate
Delegate that represents visitor for the Properties class.

Namespace: GemStone.GemFire.Cache.Generic
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public delegate void PropertyVisitorGeneric<TPropKey, TPropValue>(
	TPropKey key,
	TPropValue value
)

Parameters

key
Type: TPropKey
The key of the property.
value
Type: TPropValue
The value of the property.

Type Parameters

TPropKey
TPropValue
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