ActionList.AddRange Method (IEnumerable<UITestAction>)

 

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

public int AddRange(
    IEnumerable<UITestAction> addActions
)
public:
int AddRange(
    IEnumerable<UITestAction^>^ addActions
)
member AddRange : 
        addActions:IEnumerable<UITestAction> -> int
Public Function AddRange (
    addActions As IEnumerable(Of UITestAction)
) As Integer

Parameters

Return Value

Type: System.Int32

The number of actions that are added to this list.

See Also

UITestAction
ActionList Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace

Return to top