Interface IObservableListWrap<T>
Define una serie de miembros a implementar por una clase que defina un envoltorio observable sobre un IList<T>.
Inherited Members
Namespace: TheXDS.MCART.Types.Base
Assembly: MCART.Mvvm.dll
Syntax
public interface IObservableListWrap<T> : INotifyCollectionChanged, IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable, IRefreshable
Type Parameters
Name | Description |
---|---|
T |
Properties
| Edit this page View SourceUnderlyingList
Obtiene una referencia a la lista subyacente de este envoltorio observable.
Declaration
IList<T> UnderlyingList { get; }
Property Value
Type | Description |
---|---|
IList<T> |
Methods
| Edit this page View SourceSubstitute(IList<T>)
Sustituye la lista subyacente por una nueva.
Declaration
void Substitute(IList<T> newCollection)
Parameters
Type | Name | Description |
---|---|---|
IList<T> | newCollection | Lista a establecer como la lista subyacente. |