ITestObjectCollection<TObjectInterface> Interface

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Represents the base interface for collections of test management objects.

Namespace:   Microsoft.TeamFoundation.TestManagement.Client
Assembly:  Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)

Syntax

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
Public Interface ITestObjectCollection(Of TObjectInterface)
    Inherits IList(Of TObjectInterface), ICollection(Of TObjectInterface),
    IEnumerable(Of TObjectInterface), IEnumerable, INotifyCollectionChanged,
    INotifyPropertyChanged

Type Parameters

  • TObjectInterface
    A test management object of Type.

Properties

Name Description
System_CAPS_pubproperty Count

(Inherited from ICollection<T>.)

System_CAPS_pubproperty IsReadOnly

(Inherited from ICollection<T>.)

System_CAPS_pubproperty Item[Int32]

(Inherited from IList<T>.)

System_CAPS_pubproperty SyncRoot

Gets an object that can be used to synchronize access to the collection.

Methods

Name Description
System_CAPS_pubmethod Add(T)

(Inherited from ICollection<T>.)

System_CAPS_pubmethod Clear()

(Inherited from ICollection<T>.)

System_CAPS_pubmethod Contains(T)

(Inherited from ICollection<T>.)

System_CAPS_pubmethod CopyTo(T[], Int32)

(Inherited from ICollection<T>.)

System_CAPS_pubmethod GetEnumerator()

(Inherited from IEnumerable<T>.)

System_CAPS_pubmethod IndexOf(T)

(Inherited from IList<T>.)

System_CAPS_pubmethod Insert(Int32, T)

(Inherited from IList<T>.)

System_CAPS_pubmethod Move(Int32, Int32)

Moves the item of the collection from one position to another.

System_CAPS_pubmethod Remove(T)

(Inherited from ICollection<T>.)

System_CAPS_pubmethod RemoveAt(Int32)

(Inherited from IList<T>.)

Events

Name Description
System_CAPS_pubevent CollectionChanged

(Inherited from INotifyCollectionChanged.)

System_CAPS_pubevent PropertyChanged

(Inherited from INotifyPropertyChanged.)

See Also

INotifyCollectionChanged
INotifyPropertyChanged
Microsoft.TeamFoundation.TestManagement.Client Namespace

Return to top