共用方式為


Stream.AsyncWrite 擴充方法 (F#)

傳回會將指定之位元組寫入至資料流的非同步計算。

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

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

// Signature:
type System.IO.Stream with
  member AsyncWrite : byte [] * ?int * ?int -> Async<unit>

// Usage:
stream.AsyncWrite (buffer)

參數

  • buffer
    型別:byte[]

    寫入的來源緩衝區。

  • offset
    型別:int

    指定資料流中位元組數目的選擇性位移。

  • count
    型別:int

    要寫入至資料流的選擇性位元組數目。

例外狀況

例外狀況

描述

ArgumentException

當 offset 或 count 大於緩衝區長度時,擲回此例外狀況。

平台

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

版本資訊

F# 核心程式庫版本

支援版本:2.0

請參閱

參考

Control.CommonExtensions 模組 (F#)

Stream