IStream.Write(Byte[], Int32, IntPtr) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從目前搜尋指標開始,將指定的位元元組數目寫入資料流物件。
public:
void Write(cli::array <System::Byte> ^ pv, int cb, IntPtr pcbWritten);
public void Write (byte[] pv, int cb, IntPtr pcbWritten);
abstract member Write : byte[] * int * nativeint -> unit
Public Sub Write (pv As Byte(), cb As Integer, pcbWritten As IntPtr)
參數
- pv
- Byte[]
要寫入此數據流的緩衝區。
- cb
- Int32
要寫入數據流的位元組數目。
- pcbWritten
-
IntPtr
nativeint
uint
變數的指標,這個方法會將寫入數據流物件的實際位元元組數目寫入其中。 呼叫端可以將這個指標設定為 Zero,在此情況下,這個方法不會提供寫入的實際位元組數目。
備註
如需詳細資訊,請參閱 ISequentialStream::Write的現有檔。