Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
- T
The Type that specifies the kind of UITestAction objects to select.
See Also
UITestAction
ActionList Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace
Return to top