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 から継承されます。) |
このページのトップへ