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。

在执行计算时执行取消检查。 此方法的存在使得能够在 async { ... } 计算表达式语法中使用 let!。

平台

Windows 8,Windows 7,Windows server 2012中,Windows server 2008 R2

版本信息

F#核心库版本

支持:2.0,4.0,可移植

请参见

参考

Control.AsyncBuilder 类 (F#)

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