TestingUtils.WaitUntilAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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
매개 변수
- 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
매개 변수
- timeout
- TimeSpan
시간 제한 값
반환
조건자가 성공하면 True, 그렇지 않으면 false입니다.