共用方式為


TestingUtils.WithTimeout(Task, TimeSpan, String) 方法

定義

嘗試在指定時間內完成工作

public static System.Threading.Tasks.Task WithTimeout (this System.Threading.Tasks.Task taskToComplete, TimeSpan timeout, string message);
static member WithTimeout : System.Threading.Tasks.Task * TimeSpan * string -> System.Threading.Tasks.Task
<Extension()>
Public Function WithTimeout (taskToComplete As Task, timeout As TimeSpan, message As String) As Task

參數

taskToComplete
Task

要執行的工作

timeout
TimeSpan

逾時值

message
String

如果工作未在指定時間內完成,則要放入 TimeoutException 的訊息

傳回

例外狀況

如果工作未在指定時間內完成

適用於