CryptoStream.Write(Byte[], Int32, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
寫入一位元組序列至目前的 CryptoStream,並依所寫入的位元組數目進階這個資料流裡的目前位置。
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[]
位元組陣列。 此方法會從 buffer
複製 count
位元組到目前資料流。
- offset
- Int32
開始複製位元組到目前資料流的 buffer
的位元組位移。
- count
- Int32
寫入目前資料流的位元組數目。
例外狀況
與目前 CryptoStreamMode 物件關聯的 CryptoStream 與基礎資料流不符。 例如,如果將 Write 搭配唯讀的基礎資料流使用,便會擲回這個例外狀況。
offset
或 count
小於零。
count
和 offset
參數的總和大於緩衝區的長度。