ActionList Class
Represents the list of actions in a UITest.
Namespace: Microsoft.VisualStudio.TestTools.UITest.Common
Assembly: Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)
Inheritance Hierarchy
System.Object
Microsoft.VisualStudio.TestTools.UITest.Common.ActionList
Syntax
[DebuggerDisplayAttribute("Count = {Count}")]
public class ActionList
[DebuggerDisplayAttribute("Count = {Count}")]
public ref class ActionList
[<DebuggerDisplayAttribute("Count = {Count}")>]
type ActionList = class end
<DebuggerDisplayAttribute("Count = {Count}")>
Public Class ActionList
Constructors
Name | Description | |
---|---|---|
ActionList() | Initializes a new instance of the ActionList class. |
Properties
Name | Description | |
---|---|---|
Actions | Gets the list of actions. |
|
Count | Gets the number of actions in the list. |
Methods
Name | Description | |
---|---|---|
AddRange(IEnumerable<UITestAction>) | Adds the actions in the provided list to the end of this action list. |
|
Delete(Int64) | Deletes the action from the list that has the specified ID. |
|
DeleteRange(Int64, Int64) | Deletes a range of actions from this action list. |
|
Equals(ActionList) | Determines whether the provided action list is equal to this action list object. |
|
Equals(Object) | Determines whether the provided object is equal to this action list object.(Overrides Object.Equals(Object).) |
|
Finalize() | (Inherited from Object.) |
|
Find(Int64) | Searches for an action that has the given identifier and returns the action. |
|
FindIndex(Int64) | Returns the index of the action that has the specified identifier. |
|
GetActionsOfType<T>() | Returns an enumerated list of actions of the specified type from this action list. |
|
GetHashCode() | (Overrides Object.GetHashCode().) |
|
GetRange(Int64, Int64) | Returns a collection that contains the specified range of actions from this action list. |
|
GetType() | (Inherited from Object.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
ToString() | (Inherited from Object.) |
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
UITest
Microsoft.VisualStudio.TestTools.UITest.Common Namespace
Return to top