Click or drag to resize
Task Scheduler Managed Class Library

ActionCollectionAddRange Method

Adds a collection of actions to the end of the ActionCollection.

Namespace:  Microsoft.Win32.TaskScheduler
Assembly:  Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.10.1
Syntax
public void AddRange(
	IEnumerable<Action> actions
)
Request Example View Source

Parameters

actions
Type: System.Collections.GenericIEnumerableAction
The actions to be added to the end of the ActionCollection. The collection itself cannot be null and cannot contain null elements.
Exceptions
ExceptionCondition
ArgumentNullExceptionactions is null.
See Also