[This is preliminary documentation and is subject to change.]

Delegate of handler of Adding, Removing and ItemChanging events

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public delegate void ItemCancelEventHandler(
	DictionaryWithEvents<TKey, TValue> sender,
	DictionaryWithEvents<(Of <(<'TKey, TValue>)>)>..::..CancelableKeyValueEventArgs e
)
Visual Basic
Public Delegate Sub ItemCancelEventHandler ( _
	sender As DictionaryWithEvents(Of TKey, TValue), _
	e As DictionaryWithEvents<(Of <(<'TKey, TValue>)>)>..::..CancelableKeyValueEventArgs _
)
Visual C++
public delegate void ItemCancelEventHandler(
	DictionaryWithEvents<TKey, TValue>^ sender, 
	DictionaryWithEvents<(Of <(<'TKey, TValue>)>)>..::..CancelableKeyValueEventArgs^ e
)
F#
type ItemCancelEventHandler = 
    delegate of 
        sender:DictionaryWithEvents<'TKey, 'TValue> * 
        e:DictionaryWithEvents<(Of <(<'TKey, TValue>)>)>..::..CancelableKeyValueEventArgs -> unit
JScript
JScript does not support delegates.

See Also