DeleteTestDataQueueItems
Delete specified test data queue items.
Definition
Namespace: UiPath.Testing.API
Assembly: UiPath.Testing.Activities.Api (in UiPath.Testing.Activities.Api.dll)
Overloads
DeleteTestDataQueueItems(List<TestDataQueueItem>) | Delete specified test data queue items. |
DeleteTestDataQueueItems(List<TestDataQueueItem>, String) | Delete specified test data queue items, from a certain Orchestrator folder. |
DeleteTestDataQueueItems(List<TestDataQueueItem>, String, In32) | Delete specified test data queue items, from a certain Orchestrator folder, and with TimeoutMS configured. |
DeleteTestDataQueueItems(List<TestDataQueueItem>)
Delete specified test data queue items.
void DeleteTestDataQueueItems(
List<TestDataQueueItem> testDataQueueItems
)
testDataQueueItems List<TestDataQueueItem> : List the queue items that you want to delete.
DeleteTestDataQueueItems(List<TestDataQueueItem>, String)
Delete specified test data queue items, from a certain Orchestrator folder.
void DeleteTestDataQueueItems(
List<TestDataQueueItem> testDataQueueItems,
string folderPath
)
testDataQueueItems List <TestDataQueueItem> : List the queue items that you want to delete.
folderPath String : The path of the folder where the specified test data queue is located, if different from the folder where the process is running. Use / as the separator to indicate subfolders. For example "Testing/Automated Testing".
DeleteTestDataQueueItems(List<TestDataQueueItem>, String, In32)
Delete specified test data queue items, from a certain Orchestrator folder, and with TimeoutMS configured.
void DeleteTestDataQueueItems(
List<TestDataQueueItem> testDataQueueItems,
string folderPath,
int timeoutMs
)
testDataQueueItems List <TestDataQueueItem> : List the queue items that you want to delete.
folderPath String : The path of the folder where the specified test data queue is located, if different from the folder where the process is running. Use / as the separator to indicate subfolders. For example "Testing/Automated Testing".
timeoutMs Int32 : Specifies the amount of time (in milliseconds) to wait for the activity to run before an error is thrown. The default value is 30000 milliseconds (30 seconds).