ActionCollectionAddRange Method

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

Definition

Namespace: Microsoft.Win32.TaskScheduler
Assembly: Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.11.0
public void AddRange(
	IEnumerable<Action> actions
)

Parameters

actions  IEnumerableAction
The actions to be added to the end of the ActionCollection. The collection itself cannot be null and cannot contain null elements.

Exceptions

ArgumentNullExceptionactions is null.

See Also