ActionList.GetRange Method
Returns a collection that contains the specified range of actions from 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 GetRange ( _
startId As Long, _
stopId As Long _
) As ICollection(Of UITestAction)
public ICollection<UITestAction> GetRange(
long startId,
long stopId
)
public:
ICollection<UITestAction^>^ GetRange(
long long startId,
long long stopId
)
member GetRange :
startId:int64 *
stopId:int64 -> ICollection<UITestAction>
public function GetRange(
startId : long,
stopId : long
) : ICollection<UITestAction>
Parameters
startId
Type: Int64An Int64 that represents the identifier for the item at the start of the range.
stopId
Type: Int64An Int64 that represents the identifier for the item at the end of the range.
Return Value
Type: ICollection<UITestAction>
A collection that contains the specified range of actions from this action 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.