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
TThe 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
indexintThe zero-based index of the element to get.
Property Value
- T
The element at the specified index.
Exceptions
- ArgumentOutOfRangeException
indexis less than zero.- ArgumentOutOfRangeException
indexis equal to or greater than Count.