IReadOnlyObservableSet<T> Interface

 

Provides a homogeneous collection of objects of type T.

Namespace:   Microsoft.VisualStudio.Shell
Assembly:  Microsoft.VisualStudio.Shell.Immutable.11.0 (in Microsoft.VisualStudio.Shell.Immutable.11.0.dll)

public interface IReadOnlyObservableSet<T> : IReadOnlyObservableSet, 
	IEnumerable, INotifyCollectionChanged, IEnumerable<T>

Type Parameters

T

The type of items stored in the set.

NameDescription
System_CAPS_pubpropertyCount

Gets the number of elements contained in the IReadOnlyObservableSet.(Inherited from IReadOnlyObservableSet.)

NameDescription
System_CAPS_pubmethodContains(T)

Determines whether the IReadOnlyObservableSet<T> contains a specific value.

System_CAPS_pubmethodContains(Object)

Determines whether the IReadOnlyObservableSet contains a specific value.(Inherited from IReadOnlyObservableSet.)

System_CAPS_pubmethodGetEnumerator()

(Inherited from IEnumerable.)

NameDescription
System_CAPS_pubeventCollectionChanged

(Inherited from INotifyCollectionChanged.)

This interface is used by the ReadOnlyObservableSet<T> base class to specifically filter hierarchy items (not progressive nodes) in a solution filter. If you are creating a solution filter from scratch, use IReadOnlyObservableSet.

Return to top
Show: