共用方式為


AsyncBuilder.Bind<'T,'U> 方法 (F#)

實作非同步計算中的 let!。

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

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

// Signature:
member this.Bind : Async<'T> * ('T -> Async<'U>) -> Async<'U>

// Usage:
asyncBuilder.Bind (computation, binder)

參數

  • computation
    型別:Async<'T>

    計算,提供未繫結的結果。

  • binder
    型別:'T -> Async<'U>

    函式,繫結 computation 的結果。

傳回值

在 computation 結果上執行單邊繫結的非同步。

備註

建立執行 computation 的非同步計算,同時,當計算產生結果時,將結果傳遞至將計算結果繫結至值的 binder。

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