The interface for a collection that will notify registered event handlers of changes to its contents.

Namespace: yWorks.Canvas.Model
Assembly: yWorks.yFilesSilverlight.Viewer (in yWorks.yFilesSilverlight.Viewer.dll) Version: 2.1.0.2

Syntax

C#
public interface ICollectionModel<T> : ICollection<T>, 
	IEnumerable<T>, IEnumerable
Visual Basic
Public Interface ICollectionModel(Of T) _
	Inherits ICollection(Of T), IEnumerable(Of T), IEnumerable

Type Parameters

T
The type of the items in the collection.

See Also