Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

EqtBaseCollection<T> Class

 

Provides a base class for collections in this namespace.

Namespace:   Microsoft.VisualStudio.TestTools.Common
Assembly:  Microsoft.VisualStudio.QualityTools.Common (in Microsoft.VisualStudio.QualityTools.Common.dll)


generic<typename T>
[SerializableAttribute]
public ref class EqtBaseCollection : ICollection<T>, IEnumerable<T>, 
	IEnumerable, ICloneable, IXmlTestStore

Type Parameters

T

A Type that determines the type of object that the collection contains.

NameDescription
System_CAPS_protmethodEqtBaseCollection<T>()

Initializes a new instance of the EqtBaseCollection<T> class.

System_CAPS_protmethodEqtBaseCollection<T>(EqtBaseCollection<T>^)

Initializes a new instance of the EqtBaseCollection<T> class by making a shallow copy of the provided EqtBaseCollection<T> object.

System_CAPS_protmethodEqtBaseCollection<T>(IEqualityComparer^)

Initializes a new sortable instance of the EqtBaseCollection<T> class by using the provided comparer.

NameDescription
System_CAPS_pubpropertyCount

Gets the number of items in the collection.

System_CAPS_pubpropertyIsReadOnly

Gets a value that indicates whether the collection is read-only.

NameDescription
System_CAPS_pubmethodAdd(T)

Adds an item to the collection.

System_CAPS_pubmethodClear()

Clears all items from the collection.

System_CAPS_pubmethodClone()

Creates a copy of the collection.

System_CAPS_pubmethodContains(T)

Returns a value that indicates whether the provided item is already in the collection.

System_CAPS_pubmethodCopyTo(array<T>^, Int32)

Copies all items in the collection to the provided array, starting with the provided index.

System_CAPS_pubmethodEquals(Object^)

(Inherited from Object.)

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetEnumerator()

Returns an IEnumerator object for iterating through the collection.

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_pubmethodLoad(XmlElement^, XmlTestStoreParameters^)

Loads the current object from the provided XML element by using the provided parameters.

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodRemove(T)

Removes the provided item from the collection, if the item exists.

System_CAPS_pubmethodSave(XmlElement^, XmlTestStoreParameters^)

Saves the current object to the provided XML element using the provided parameters.

System_CAPS_pubmethodToString()

(Inherited from Object.)

NameDescription
System_CAPS_protfieldm_container

This API supports the product infrastructure and is not intended to be used directly from your code. Returns the hash table that contains the collection.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: