FilteredObservableCollection<T> Class
Visual Studio 2012
Represents a filtered observable collection.
Namespace:
Microsoft.VisualStudio.Language.Intellisense
Assembly: Microsoft.VisualStudio.Language.Intellisense (in Microsoft.VisualStudio.Language.Intellisense.dll)
The FilteredObservableCollection<T> type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | FilteredObservableCollection<T> | Initializes a new instance of FilteredObservableCollection<T>. |
| Name | Description | |
|---|---|---|
![]() | Count | Gets the number of items in the collection. |
![]() | IsFixedSize | Determines whether this collection has a fixed size. |
![]() | IsReadOnly | Determines whether this collection is read-only. |
![]() | IsSynchronized | Determines whether the collection is synchronized. |
![]() | Item | Gets the item at the specified location. |
![]() | SyncRoot | Gets the object used to synchronize the collection. |
| Name | Description | |
|---|---|---|
![]() | Add(Object) | Since this collection is read-only, throws an InvalidOperationException. |
![]() | Add(T) | Since this collection is read-only, throws an InvalidOperationException. |
![]() | Clear | Since this collection is read-only, throws an InvalidOperationException. |
![]() | Contains(Object) | Determines whether the collection contains the specified object. |
![]() | Contains(T) | Determines whether the collection contains the specified item. |
![]() | CopyTo(Array, Int32) | Since this collection is read-only, throws an InvalidOperationException. |
![]() | CopyTo(T[], Int32) | Since this collection is read-only, throws an InvalidOperationException. |
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Filter | Filters the collection by the specified predicate. |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetEnumerator | Gets the enumerator. |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | IndexOf(Object) | Gets the location of the specified item. |
![]() | IndexOf(T) | Gets the location of the specified item. |
![]() | Insert(Int32, Object) | Since this collection is read-only, throws an InvalidOperationException. |
![]() | Insert(Int32, T) | Since this collection is read-only, throws an InvalidOperationException. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Remove(Object) | Since this collection is read-only, throws an InvalidOperationException. |
![]() | Remove(T) | Since this collection is read-only, throws an InvalidOperationException. |
![]() | RemoveAt | Since this collection is read-only, throws an InvalidOperationException. |
![]() | StopFiltering | Removes the filter for the collection. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IEnumerable.GetEnumerator | Gets the enumerator. |
![]() ![]() | IList.Item | Gets the item at the specified location. |
The underlying collection for this class must implement IList and INotifyCollectionChanged.

