共用方式為


AsyncBuilder.TryWith<'T> 方法 (F#)

實作非同步計算中的 try...with。

**命名空間/模組路徑:**Microsoft.FSharp.Control

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
member this.TryWith : Async<'T> * (exn -> Async<'T>) -> Async<'T>

// Usage:
asyncBuilder.TryWith (computation, catchHandler)

參數

  • computation
    型別:Async<'T>

    輸入計算。

  • catchHandler
    型別:exn -> Async<'T>

    當 computation 擲回例外狀況時要執行的函式。

傳回值

非同步計算,這個計算會執行 computation,並在擲回例外狀況時呼叫 catchHandler。

備註

這個函式建立會執行 computation 並傳回其結果的非同步計算。如果發生例外狀況,則會呼叫 catchHandler(exn),並改為執行產生的計算。

執行計算之後,便會執行取消檢查。如果這個方法存在,則允許將 try...with 用於 async { ... } 計算運算式語法。

平台

Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2

版本資訊

F# 核心程式庫版本

支援版本:2.0, 4.0,可攜式執行檔 (PE)。

請參閱

參考

Control.AsyncBuilder 類別 (F#)

Microsoft.FSharp.Control 命名空間 (F#)