Interface IObservableListWrap
Defines members to be implemented by a class that provides an observable wrapper around an IList.
Inherited Members
Namespace: TheXDS.MCART.Types.Base
Assembly: MCART.Mvvm.dll
Syntax
public interface IObservableListWrap : IList, ICollection, IEnumerable, INotifyCollectionChanged, IRefreshable
Properties
| Edit this page View SourceUnderlyingList
Gets a reference to the underlying list used by this observable wrapper.
Declaration
IList UnderlyingList { get; }
Property Value
| Type | Description |
|---|---|
| IList |
Methods
| Edit this page View SourceSubstitute(IList)
Replaces the underlying list with a new one.
Declaration
void Substitute(IList newCollection)
Parameters
| Type | Name | Description |
|---|---|---|
| IList | newCollection | The list to set as the new underlying list. |