ISharePointCollection<T> Interface

 

Represents a read-only collection of items. It provides no public methods to modify content of the collection. It is used as a base type for a number of collections in SharePoint project model. These collections are typically changed internally and events can be used to monitor for these changes.

Namespace:   Microsoft.VisualStudio.SharePoint
Assembly:  Microsoft.VisualStudio.SharePoint (in Microsoft.VisualStudio.SharePoint.dll)

generic<typename T>
public interface class ISharePointCollection : INotifyCollectionChanged, 
	INotifyPropertyChanged, IEnumerable<T>, IEnumerable

Type Parameters

T

The type of the item parameters.

NameDescription
System_CAPS_pubpropertyCount

Gets the number of items in the collection.

NameDescription
System_CAPS_pubmethodContains(T)

Gets whether the provided item is a member of this collection.

System_CAPS_pubmethodCopyTo(array<T>^, Int32)

Copies items from this collection into an array.

System_CAPS_pubmethodGetEnumerator()

(Inherited from IEnumerable<T>.)

Return to top
Show: