ExpiringDictionaryTKey, TValueGetExpiredItemsDelegate Property |
Gets or sets an optional delegate that returns the collection of the keys of expired items. If this delegate is present
then it is always used in preference to the timestamps attached to the item and the Refresh methods will have no effect.
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public Func<ExpiringDictionary<TKey, TValue>, IEnumerable<TKey>> GetExpiredItemsDelegate { get; set; }
Public Property GetExpiredItemsDelegate As Func(Of ExpiringDictionary(Of TKey, TValue), IEnumerable(Of TKey))
Get
Set
public:
property Func<ExpiringDictionary<TKey, TValue>^, IEnumerable<TKey>^>^ GetExpiredItemsDelegate {
Func<ExpiringDictionary<TKey, TValue>^, IEnumerable<TKey>^>^ get ();
void set (Func<ExpiringDictionary<TKey, TValue>^, IEnumerable<TKey>^>^ value);
}
member GetExpiredItemsDelegate : Func<ExpiringDictionary<'TKey, 'TValue>, IEnumerable<'TKey>> with get, set
Property Value
Type:
FuncExpiringDictionaryTKey,
TValue,
IEnumerableTKeySee Also