共用方式為


IApp.WaitFor 方法

定義

將重複呼叫函式的泛型等候函式, predicate 直到傳回 true 為止。 TimeoutException如果述詞未在時間限制內填滿,則會擲回 。

public void WaitFor (Func<bool> predicate, string timeoutMessage = "Timed out waiting...", Nullable<TimeSpan> timeout = null, Nullable<TimeSpan> retryFrequency = null, Nullable<TimeSpan> postTimeout = null);
abstract member WaitFor : Func<bool> * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> -> unit
Public Sub WaitFor (predicate As Func(Of Boolean), Optional timeoutMessage As String = "Timed out waiting...", Optional timeout As Nullable(Of TimeSpan) = null, Optional retryFrequency As Nullable(Of TimeSpan) = null, Optional postTimeout As Nullable(Of TimeSpan) = null)

參數

predicate
Func<Boolean>

等候完成時應該傳回 true 的述詞函式。

timeoutMessage
String

中使用的 TimeoutException 訊息。

timeout
Nullable<TimeSpan>

TimeSpan 等候再失敗的 。

retryFrequency
Nullable<TimeSpan>

TimeSpan 在每個述詞呼叫之間等候的 。

postTimeout
Nullable<TimeSpan>

在述詞傳回 true 之後要等候的最後 TimeSpan 一個 。

適用於