共用方式為


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

建立非同步計算,這個計算會先執行一次計算 ,然後執行另一次計算,最後傳回第二次計算的結果。

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

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

// Signature:
member this.Combine : Async<unit> * Async<'T> -> Async<'T>

// Usage:
asyncBuilder.Combine (computation1, computation2)

參數

  • computation1
    型別:Async<unit>

    循序計算的第 1 部分。

  • computation2
    型別:Async<'T>

    循序計算的第 2 部分。

傳回值

循序執行兩項計算的非同步計算作業。

備註

執行計算之後,便會執行取消檢查。如果這個方法存在,則允許將運算式排序用於 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#)