Table of Contents

Interface IReadOnlyNotifyCollection<T>

Namespace
Acuit.Pinpoint.Common.Collections
Assembly
Acuit.Pinpoint.Common.dll

A read-only collection that notifies listeners of dynamic changes, such as when an item is added and removed or the whole list is cleared.

public interface IReadOnlyNotifyCollection<out T> : IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable, INotifyCollectionChanged

Type Parameters

T

The type of the elements in the collection.

Inherited Members

Properties

this[int]

Gets the element at the specified index.

T this[int index] { get; }

Parameters

index int

The zero-based index of the element to get.

Property Value

T

The element at the specified index.

Exceptions

ArgumentOutOfRangeException

index is less than zero.

ArgumentOutOfRangeException

index is equal to or greater than Count.