共用方式為


ISharePointCollection<T> 介面

表示唯讀的項目集合。 這未提供公用方法來修改集合的內容。 而是當成 SharePoint 專案模型中一些集合的基底型別。 這些集合一般是在內部進行變更,而且可以使用事件來監視這些變更。

命名空間:  Microsoft.VisualStudio.SharePoint
組件:  Microsoft.VisualStudio.SharePoint (在 Microsoft.VisualStudio.SharePoint.dll 中)

語法

'宣告
Public Interface ISharePointCollection(Of T) _
    Inherits INotifyCollectionChanged, INotifyPropertyChanged, IEnumerable(Of T),  _
    IEnumerable
public interface ISharePointCollection<T> : INotifyCollectionChanged, 
    INotifyPropertyChanged, IEnumerable<T>, IEnumerable

型別參數

  • T
    項目參數的型別。

ISharePointCollection<T> 型別會公開下列成員。

屬性

  名稱 說明
公用屬性 Count 取得集合中的項目數目。

回頁首

方法

  名稱 說明
公用方法 Contains 取得提供的項目是否為這個集合的成員。
公用方法 CopyTo 將項目從這個集合複製至陣列。
公用方法 GetEnumerator() 傳回可逐一查看集合的列舉程式。 (繼承自 IEnumerable<T>)。
公用方法 GetEnumerator() 傳回會逐一查看集合的列舉程式。 (繼承自 IEnumerable)。

回頁首

事件

  名稱 說明
公用事件 CollectionChanged 發生於集合變更時。 (繼承自 INotifyCollectionChanged)。
公用事件 PropertyChanged 發生於屬性值變更時。 (繼承自 INotifyPropertyChanged)。

回頁首

請參閱

參考

Microsoft.VisualStudio.SharePoint 命名空間