Show / Hide Table of Contents

Class ObservableOrderedSet<T>

Inheritance
object
DecoratedSet<T>
OrderedSet<T>
ObservableOrderedSet<T>
ObservableOppositeOrderedSet<TParent, TCollected>
Implements
INotifyCollectionChanged
INotifyCollectionChanging
INotifyPropertyChanged
IOrderedSetExpression<T>
IListExpression<T>
ISetExpression<T>
ICollectionExpression<T>
IEnumerableExpression<T>
IOrderedSet<T>
IList<T>
ISet<T>
ICollection<T>
IEnumerable<T>
ICollectionExpression
IEnumerableExpression
IList
ICollection
IEnumerable
Inherited Members
OrderedSet<T>.Remove(T)
OrderedSet<T>.GetEnumerator()
OrderedSet<T>.IndexOf(T)
OrderedSet<T>.RemoveAt(int)
OrderedSet<T>.this[int]
OrderedSet<T>.AsReadOnly()
DecoratedSet<T>.Items
DecoratedSet<T>.ExceptWith(IEnumerable<T>)
DecoratedSet<T>.IntersectWith(IEnumerable<T>)
DecoratedSet<T>.IsProperSubsetOf(IEnumerable<T>)
DecoratedSet<T>.IsProperSupersetOf(IEnumerable<T>)
DecoratedSet<T>.IsSubsetOf(IEnumerable<T>)
DecoratedSet<T>.IsSupersetOf(IEnumerable<T>)
DecoratedSet<T>.Overlaps(IEnumerable<T>)
DecoratedSet<T>.SetEquals(IEnumerable<T>)
DecoratedSet<T>.SymmetricExceptWith(IEnumerable<T>)
DecoratedSet<T>.UnionWith(IEnumerable<T>)
DecoratedSet<T>.Contains(T)
DecoratedSet<T>.CopyTo(T[], int)
DecoratedSet<T>.Count
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: NMF.Collections.ObjectModel
Assembly: NMF.Collections.dll
Syntax
public class ObservableOrderedSet<T> : OrderedSet<T>, INotifyCollectionChanged, INotifyCollectionChanging, INotifyPropertyChanged, IOrderedSetExpression<T>, IListExpression<T>, ISetExpression<T>, ICollectionExpression<T>, IEnumerableExpression<T>, IOrderedSet<T>, IList<T>, ISet<T>, ICollection<T>, IEnumerable<T>, ICollectionExpression, IEnumerableExpression, IList, ICollection, IEnumerable
Type Parameters
Name Description
T

Methods

| Edit this page View Source

Add(T)

Declaration
public override bool Add(T item)
Parameters
Type Name Description
T item
Returns
Type Description
bool
Overrides
NMF.Collections.Generic.OrderedSet<T>.Add(T)
| Edit this page View Source

AsNotifiable()

Gets notifications for this collection

Declaration
public INotifyCollection<T> AsNotifiable()
Returns
Type Description
INotifyCollection<T>

A collection that will notify clients as new elements change

| Edit this page View Source

Clear()

Declaration
public override void Clear()
Overrides
NMF.Collections.Generic.OrderedSet<T>.Clear()
| Edit this page View Source

Insert(int, T)

Declaration
public override void Insert(int index, T item)
Parameters
Type Name Description
int index
T item
Overrides
OrderedSet<T>.Insert(int, T)
| Edit this page View Source

OnCollectionChanged(NotifyCollectionChangedEventArgs)

Declaration
protected void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
Parameters
Type Name Description
NotifyCollectionChangedEventArgs e
| Edit this page View Source

OnCollectionChanging(NotifyCollectionChangedEventArgs)

Declaration
protected void OnCollectionChanging(NotifyCollectionChangedEventArgs e)
Parameters
Type Name Description
NotifyCollectionChangedEventArgs e
| Edit this page View Source

OnPropertyChanged(string)

Declaration
protected void OnPropertyChanged(string property)
Parameters
Type Name Description
string property
| Edit this page View Source

Remove(T, int)

Declaration
protected override bool Remove(T item, int index)
Parameters
Type Name Description
T item
int index
Returns
Type Description
bool
Overrides
OrderedSet<T>.Remove(T, int)
| Edit this page View Source

Replace(int, T, T)

Declaration
protected override void Replace(int index, T oldValue, T newValue)
Parameters
Type Name Description
int index
T oldValue
T newValue
Overrides
OrderedSet<T>.Replace(int, T, T)
| Edit this page View Source

RequireEvents()

Declaration
protected bool RequireEvents()
Returns
Type Description
bool
| Edit this page View Source

SilentAdd(T)

Declaration
protected bool SilentAdd(T item)
Parameters
Type Name Description
T item
Returns
Type Description
bool
| Edit this page View Source

SilentClear()

Declaration
protected void SilentClear()
| Edit this page View Source

SilentInsert(int, T)

Declaration
protected void SilentInsert(int index, T item)
Parameters
Type Name Description
int index
T item
| Edit this page View Source

SilentRemove(T, int)

Declaration
protected bool SilentRemove(T item, int index)
Parameters
Type Name Description
T item
int index
Returns
Type Description
bool
| Edit this page View Source

SilentReplace(int, T, T)

Declaration
protected void SilentReplace(int index, T oldValue, T newValue)
Parameters
Type Name Description
int index
T oldValue
T newValue
| Edit this page View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Events

| Edit this page View Source

CollectionChanged

Declaration
public event NotifyCollectionChangedEventHandler CollectionChanged
Event Type
Type Description
NotifyCollectionChangedEventHandler
| Edit this page View Source

CollectionChanging

Declaration
public event EventHandler<NotifyCollectionChangedEventArgs> CollectionChanging
Event Type
Type Description
EventHandler<NotifyCollectionChangedEventArgs>
| Edit this page View Source

PropertyChanged

Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type Description
PropertyChangedEventHandler

Implements

INotifyCollectionChanged
INotifyCollectionChanging
INotifyPropertyChanged
IOrderedSetExpression<T>
IListExpression<T>
ISetExpression<T>
ICollectionExpression<T>
IEnumerableExpression<T>
IOrderedSet<T>
IList<T>
ISet<T>
ICollection<T>
IEnumerable<T>
ICollectionExpression
IEnumerableExpression
IList
ICollection
IEnumerable
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX