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
System_CAPS_pubmethod ActionList()

Initializes a new instance of the ActionList class.

Properties

Name Description
System_CAPS_pubproperty Actions

Gets the list of actions.

System_CAPS_pubproperty Count

Gets the number of actions in the list.

Methods

Name Description
System_CAPS_pubmethod AddRange(IEnumerable<UITestAction>)

Adds the actions in the provided list to the end of this action list.

System_CAPS_pubmethod Delete(Int64)

Deletes the action from the list that has the specified ID.

System_CAPS_pubmethod DeleteRange(Int64, Int64)

Deletes a range of actions from this action list.

System_CAPS_pubmethod Equals(ActionList)

Determines whether the provided action list is equal to this action list object.

System_CAPS_pubmethod Equals(Object)

Determines whether the provided object is equal to this action list object.(Overrides Object.Equals(Object).)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod Find(Int64)

Searches for an action that has the given identifier and returns the action.

System_CAPS_pubmethod FindIndex(Int64)

Returns the index of the action that has the specified identifier.

System_CAPS_pubmethod GetActionsOfType<T>()

Returns an enumerated list of actions of the specified type from this action list.

System_CAPS_pubmethod GetHashCode()

(Overrides Object.GetHashCode().)

System_CAPS_pubmethod GetRange(Int64, Int64)

Returns a collection that contains the specified range of actions from this action list.

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod 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