UITestControl.WaitForControlCondition Method (Predicate<UITestControl>, Int32)
Blocks the current thread until this control meets the specified condition, or until the specified time-out expires.
Namespace: Microsoft.VisualStudio.TestTools.UITesting
Assembly: Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)
Syntax
'Declaration
Public Function WaitForControlCondition ( _
conditionEvaluator As Predicate(Of UITestControl), _
millisecondsTimeout As Integer _
) As Boolean
public bool WaitForControlCondition(
Predicate<UITestControl> conditionEvaluator,
int millisecondsTimeout
)
public:
bool WaitForControlCondition(
Predicate<UITestControl^>^ conditionEvaluator,
int millisecondsTimeout
)
member WaitForControlCondition :
conditionEvaluator:Predicate<UITestControl> *
millisecondsTimeout:int -> bool
public function WaitForControlCondition(
conditionEvaluator : Predicate<UITestControl>,
millisecondsTimeout : int
) : boolean
Parameters
conditionEvaluator
Type: Predicate<UITestControl>The context to evaluate the condition.
millisecondsTimeout
Type: Int32The number of milliseconds before time-out.
Return Value
Type: Boolean
true if the condition is met before the time-out; otherwise, false.
Remarks
When the wait operation causes an implicit search for the control or, when the application is busy, the actual wait time could be more than the time-out specified.
.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.