Freigeben über


TestingUtils.WaitUntilAsync Methode

Definition

Überlädt

WaitUntilAsync(Func<Boolean,Task<Boolean>>, TimeSpan)

Führen Sie das Prädikat aus, bis sie erfolgreich oder auszeit

WaitUntilAsync(Func<Boolean,Task<Boolean>>, TimeSpan, Nullable<TimeSpan>)

Führen Sie das Prädikat aus, bis sie erfolgreich oder auszeit

WaitUntilAsync(Func<Boolean,Task<Boolean>>, TimeSpan)

Führen Sie das Prädikat aus, bis sie erfolgreich oder auszeit

public static System.Threading.Tasks.Task WaitUntilAsync (Func<bool,System.Threading.Tasks.Task<bool>> predicate, TimeSpan timeout);
static member WaitUntilAsync : Func<bool, System.Threading.Tasks.Task<bool>> * TimeSpan -> System.Threading.Tasks.Task
Public Function WaitUntilAsync (predicate As Func(Of Boolean, Task(Of Boolean)), timeout As TimeSpan) As Task

Parameter

predicate
Func<Boolean,Task<Boolean>>

Das prädikat, das ausgeführt werden soll

timeout
TimeSpan

Der Timeoutwert

Gibt zurück

True, wenn das Prädikat erfolgreich ist, andernfalls false

Gilt für:

WaitUntilAsync(Func<Boolean,Task<Boolean>>, TimeSpan, Nullable<TimeSpan>)

Quelle:
TestingUtils.cs

Führen Sie das Prädikat aus, bis sie erfolgreich oder auszeit

public static System.Threading.Tasks.Task WaitUntilAsync (Func<bool,System.Threading.Tasks.Task<bool>> predicate, TimeSpan timeout, TimeSpan? delayOnFail = default);
static member WaitUntilAsync : Func<bool, System.Threading.Tasks.Task<bool>> * TimeSpan * Nullable<TimeSpan> -> System.Threading.Tasks.Task
Public Shared Function WaitUntilAsync (predicate As Func(Of Boolean, Task(Of Boolean)), timeout As TimeSpan, Optional delayOnFail As Nullable(Of TimeSpan) = Nothing) As Task

Parameter

predicate
Func<Boolean,Task<Boolean>>

Das prädikat, das ausgeführt werden soll

timeout
TimeSpan

Der Timeoutwert

delayOnFail
Nullable<TimeSpan>

Die Zeit, um den nächsten Aufruf nach Fehler zu verzögern

Gibt zurück

True, wenn das Prädikat erfolgreich ist, andernfalls false

Gilt für: