Interface ISourceList<T>
- Namespace
- DynamicData
- Assembly
- DynamicData.dll
An editable observable list, providing observable methods as well as data access methods.
public interface ISourceList<T> : IObservableList<T>, IDisposable where T : notnull
Type Parameters
T
The type of the item.
- Inherited Members
- Extension Methods
Methods
Edit(Action<IExtendedList<T>>)
Edit the inner list within the list's internal locking mechanism.
void Edit(Action<IExtendedList<T>> updateAction)
Parameters
updateAction
Action<IExtendedList<T>>The update action.