共用方式為


Stream.AsyncRead 擴充方法 (F#)

傳回會將資料流讀入指定之緩衝區的非同步計算。

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

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

// Signatures:
type System.IO.Stream with
  member AsyncRead : byte [] * ?int * ?int -> Async<int>
type System.IO.Stream with
  member AsyncRead : int -> Async<byte []>

// Usage:
stream.AsyncRead (buffer)
stream.AsyncRead (count)

參數

  • buffer
    型別:byte[]

    要讀入的緩衝區。

  • offset
    型別:int

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

  • count
    型別:int

    要從資料流讀取的選擇性位元組數目。

例外狀況

例外狀況

描述

ArgumentException

當 offset 和 count 的總和大於緩衝區的長度時擲回。

ArgumentOutOfRangeException

當 offset 或 count 是負值時擲回。

備註

這個成員在已編譯的組件中名為 AsyncRead。如果是透過 F# 以外的語言,或是透過反映來存取方法,請使用這個名稱。

平台

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

版本資訊

F# 核心程式庫版本

支援版本:2.0

請參閱

參考

Control.CommonExtensions 模組 (F#)

Stream