ITestObjectCollection<TObjectInterface> 介面
這個 API 支援 .NET Framework 基礎結構,但您不可以直接在程式碼中使用它。
表示測試管理物件集合的基底介面。
命名空間: Microsoft.TeamFoundation.TestManagement.Client
組件: Microsoft.TeamFoundation.TestManagement.Client (在 Microsoft.TeamFoundation.TestManagement.Client.dll 中)
語法
'宣告
Public Interface ITestObjectCollection(Of TObjectInterface) _
Inherits IList(Of TObjectInterface), ICollection(Of TObjectInterface), _
IEnumerable(Of TObjectInterface), IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
public interface ITestObjectCollection<TObjectInterface> : IList<TObjectInterface>,
ICollection<TObjectInterface>, IEnumerable<TObjectInterface>,
IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
generic<typename TObjectInterface>
public interface class ITestObjectCollection : IList<TObjectInterface>,
ICollection<TObjectInterface>, IEnumerable<TObjectInterface>,
IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
type ITestObjectCollection<'TObjectInterface> =
interface
interface IList<'TObjectInterface>
interface ICollection<'TObjectInterface>
interface IEnumerable<'TObjectInterface>
interface IEnumerable
interface INotifyCollectionChanged
interface INotifyPropertyChanged
end
JScript 不支援泛型型別或方法。
型別參數
- TObjectInterface
Type 的測試管理物件。
ITestObjectCollection<TObjectInterface> 型別會公開下列成員。
屬性
名稱 | 說明 | |
---|---|---|
Count | 取得 ICollection<T> 中所包含的元素數。 (繼承自 ICollection<TObjectInterface>)。 | |
IsReadOnly | 取得值,指出 ICollection<T> 是否唯讀。 (繼承自 ICollection<TObjectInterface>)。 | |
Item | 取得或設定在指定索引的項目。 (繼承自 IList<TObjectInterface>)。 | |
SyncRoot | 取得物件,可用來對集合進行同步存取。 |
回頁首
方法
名稱 | 說明 | |
---|---|---|
Add | 將項目加入至 ICollection<T>。 (繼承自 ICollection<TObjectInterface>)。 | |
Clear | 將所有項目從 ICollection<T> 移除。 (繼承自 ICollection<TObjectInterface>)。 | |
Contains | 判斷 ICollection<T> 是否包含特定值。 (繼承自 ICollection<TObjectInterface>)。 | |
CopyTo | 從特定的 Array 索引開始,複製 ICollection<T> 項目至 Array。 (繼承自 ICollection<TObjectInterface>)。 | |
GetEnumerator | 傳回可逐一查看集合的列舉程式。 (繼承自 IEnumerable<TObjectInterface>)。 | |
IndexOf | 判斷 IList<T> 中特定項目的索引。 (繼承自 IList<TObjectInterface>)。 | |
Insert | 將項目插入位於指定索引的 IList<T>。 (繼承自 IList<TObjectInterface>)。 | |
Move | 將集合的項目從某個位置移至另一個位置。 | |
Remove | 從 ICollection<T> 移除特定物件的第一個相符項目。 (繼承自 ICollection<TObjectInterface>)。 | |
RemoveAt | 移除指定之索引處的 IList<T> 項目。 (繼承自 IList<TObjectInterface>)。 |
回頁首
事件
名稱 | 說明 | |
---|---|---|
CollectionChanged | 發生於集合變更時。 (繼承自 INotifyCollectionChanged)。 | |
PropertyChanged | 發生於屬性值變更時。 (繼承自 INotifyPropertyChanged)。 |
回頁首