ActionList.GetActionsOfType<T> Method ()

 

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

Namespace:   Microsoft.VisualStudio.TestTools.UITest.Common
Assembly:  Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)

Syntax

public IEnumerable<T> GetActionsOfType<T>()
where T : UITestAction
public:
generic<typename T>
where T : UITestAction
IEnumerable<T>^ GetActionsOfType()
member GetActionsOfType<'T when 'T : UITestAction> : unit -> IEnumerable<'T>
Public Function GetActionsOfType(Of T As UITestAction) As IEnumerable(Of T)

Return Value

Type: System.Collections.Generic.IEnumerable<T>

An enumerated list of actions of the specified type from this action list.

Type Parameters

See Also

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

Return to top