다음을 통해 공유


TestingUtils.WaitUntilAsync 메서드

정의

오버로드

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

성공하거나 시간이 초과될 때까지 조건자를 실행합니다.

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

성공하거나 시간이 초과될 때까지 조건자를 실행합니다.

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

성공하거나 시간이 초과될 때까지 조건자를 실행합니다.

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

매개 변수

predicate
Func<Boolean,Task<Boolean>>

실행할 조건자

timeout
TimeSpan

시간 제한 값

반환

조건자가 성공하면 True, 그렇지 않으면 false입니다.

적용 대상

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

Source:
TestingUtils.cs

성공하거나 시간이 초과될 때까지 조건자를 실행합니다.

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

매개 변수

predicate
Func<Boolean,Task<Boolean>>

실행할 조건자

timeout
TimeSpan

시간 제한 값

delayOnFail
Nullable<TimeSpan>

실패 시 다음 호출을 지연할 시간

반환

조건자가 성공하면 True, 그렇지 않으면 false입니다.

적용 대상