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.

WebTestBaseCollection<T>::AddRange Method (IEnumerable<T>^)

 

Adds the elements of the specified collection to the end of the WebTestBaseCollection<T>.

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

public:
void AddRange(
	IEnumerable<T>^ items
)

Parameters

items
Type: System.Collections.Generic::IEnumerable<T>^

The collection whose elements are added to the end of the WebTestBaseCollection<T>. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.

Exception Condition
ArgumentNullException

items is null.

Return to top
Show: