Raises the CollectionChanged event.

Namespace: DigitalRune.Collections
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.10.0.0 (1.10.0.9503)

Syntax

C#
protected virtual void OnCollectionChanged(
	CollectionChangedEventArgs<T> eventArgs
)
Visual Basic
Protected Overridable Sub OnCollectionChanged ( _
	eventArgs As CollectionChangedEventArgs(Of T) _
)
Visual C++
protected:
virtual void OnCollectionChanged(
	CollectionChangedEventArgs<T>^ eventArgs
)

Parameters

eventArgs
Type: DigitalRune.Collections..::..CollectionChangedEventArgs<(Of <(<'T>)>)>
CollectionChangedEventArgs<(Of <(<'T>)>)> object that provides the arguments for the event.

Remarks

Notes to Inheritors: When overriding OnCollectionChanged(CollectionChangedEventArgs<(Of <<'(T>)>>)) in a derived class, be sure to call the base class's OnCollectionChanged(CollectionChangedEventArgs<(Of <<'(T>)>>)) method so that registered delegates receive the event.

See Also