ISharePointProjectItemCollection Interface
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Represents a collection of SharePoint project items.
Namespace: Microsoft.VisualStudio.SharePoint
Assembly: Microsoft.VisualStudio.SharePoint (in Microsoft.VisualStudio.SharePoint.dll)
Syntax
'Declaration
Public Interface ISharePointProjectItemCollection _
Inherits ISharePointCollection(Of ISharePointProjectItem), INotifyCollectionChanged, INotifyPropertyChanged, _
IEnumerable(Of ISharePointProjectItem), IEnumerable
public interface ISharePointProjectItemCollection : ISharePointCollection<ISharePointProjectItem>,
INotifyCollectionChanged, INotifyPropertyChanged, IEnumerable<ISharePointProjectItem>, IEnumerable
The ISharePointProjectItemCollection type exposes the following members.
Properties
Name | Description | |
---|---|---|
Count | Gets the number of items in the collection. (Inherited from ISharePointCollection<T>.) | |
Item | Gets an instance of a ISharePointProjectItem by its folder path. | |
Project | Gets the project instance owning this collection. |
Top
Methods
Name | Description | |
---|---|---|
Add(String, String) | Creates and adds a new instance of a SharePoint project item. | |
Add(String, String, Boolean) | Creates and adds a new instance of SharePoint project item. | |
Add(String, String, String) | Creates and adds a new instance of SharePoint project item. | |
Add(String, String, String, Boolean) | Creates and adds a SharePoint project item to the project. | |
Contains | Gets whether the provided item is a member of this collection. (Inherited from ISharePointCollection<T>.) | |
CopyTo | Copies items from this collection into an array. (Inherited from ISharePointCollection<T>.) | |
Find | Finds a ISharePointProjectItem instance by its ID. | |
GetEnumerator | Returns an enumerator that iterates through the collection. (Inherited from IEnumerable<ISharePointProjectItem>.) |
Top
Events
Name | Description | |
---|---|---|
CollectionChanged | Occurs when the collection changes. (Inherited from INotifyCollectionChanged.) | |
PropertyChanged | Occurs when a property value changes. (Inherited from INotifyPropertyChanged.) |
Top