共用方式為


SqlFileStream.Write(Byte[], Int32, Int32) 方法

定義

將一串位元組寫入目前串流,並依照寫入的位元組數將目前位置往前推進。

public:
 override void Write(cli::array <System::Byte> ^ buffer, int offset, int count);
public override void Write(byte[] buffer, int offset, int count);
override this.Write : byte[] * int * int -> unit
Public Overrides Sub Write (buffer As Byte(), offset As Integer, count As Integer)

參數

buffer
Byte[]

位元組陣列。 此方法將 count 位元組從 複製 buffer 到目前串流。

offset
Int32

以零為基礎的位元組偏移量 buffer ,從哪裡開始將位元組複製到當前串流。

count
Int32

目前串流要寫入的位元組數。

例外狀況

該物件不支援資料寫入。

備註

利用該 CanWrite 屬性判斷目前實例是否支援寫入。

適用於

另請參閱