Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Moves the provided list of test suite entries to the specified location in another test suite entry collection.
Namespace: Microsoft.TeamFoundation.TestManagement.Client
Assembly: Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)
Syntax
void BulkMove(
ITestSuiteEntryCollection destination,
int index,
IEnumerable<ITestSuiteEntry> entries,
bool ignoreDuplicates
)
void BulkMove(
ITestSuiteEntryCollection^ destination,
int index,
IEnumerable<ITestSuiteEntry^>^ entries,
bool ignoreDuplicates
)
abstract BulkMove :
destination:ITestSuiteEntryCollection *
index:int *
entries:IEnumerable<ITestSuiteEntry> *
ignoreDuplicates:bool -> unit
Sub BulkMove (
destination As ITestSuiteEntryCollection,
index As Integer,
entries As IEnumerable(Of ITestSuiteEntry),
ignoreDuplicates As Boolean
)
Parameters
destination
Type: Microsoft.TeamFoundation.TestManagement.Client.ITestSuiteEntryCollectionThe target ITestSuiteEntryCollection.
index
Type: System.Int32The index for the location in the target collection to which to move the entries.
entries
Type: System.Collections.Generic.IEnumerable<ITestSuiteEntry>The list of entries in this collection to move.
ignoreDuplicates
Type: System.Booleantrue to ignore duplicates.
See Also
BulkMove Overload
ITestSuiteEntryCollection Interface
Microsoft.TeamFoundation.TestManagement.Client Namespace
Return to top