ActionList.AddRange Method
Adds the actions in the provided list to the end of this action list.
Namespace: Microsoft.VisualStudio.TestTools.UITest.Common
Assembly: Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)
Syntax
'Declaration
Public Function AddRange ( _
addActions As IEnumerable(Of UITestAction) _
) As Integer
public int AddRange(
IEnumerable<UITestAction> addActions
)
public:
int AddRange(
IEnumerable<UITestAction^>^ addActions
)
member AddRange :
addActions:IEnumerable<UITestAction> -> int
public function AddRange(
addActions : IEnumerable<UITestAction>
) : int
Parameters
addActions
Type: IEnumerable<UITestAction>An IEnumerable that contains the UITestAction objects to add.
Return Value
Type: Int32
The number of actions that are added to this list.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.