Interface IObservableList<T>
- Namespace
- Dynamic
Data
- Assembly
- DynamicData.dll
A readonly observable list, providing observable methods as well as data access methods.
Type Parameters
T
The type of item.
- Inherited Members
- Extension Methods
Properties
Count
Gets the count.
Property Value
CountChanged
Gets observe the count changes, starting with the initial items count.
Property Value
Items
Gets items enumerable.
Property Value
Methods
Connect(Func<T, bool>?)
Connect to the observable list and observe any changes starting with the list's initial items.
Parameters
Returns
- IObservable<IChange
Set <T>> An observable which emits the change set.
Preview(Func<T, bool>?)
Connect to the observable list and observe any changes before they are applied to the list. Unlike Connect(), the returned observable is not prepended with the lists initial items.
Parameters
Returns
- IObservable<IChange
Set <T>> An observable which emits the change set.