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

定义

将一字节序列写入当前的 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[]

字节数组。 此方法将 count 个字节从 buffer 复制到当前流。

offset
Int32

buffer 中的字节偏移量,从此偏移量开始将字节复制到当前流。

count
Int32

要写入当前流的字节数。

例外

与当前 CryptoStreamMode 对象关联的 CryptoStream 与基础流不匹配。 例如,对只读的基础流使用 Write 时会引发此异常。

offsetcount 小于零。

count 参数和 offset 参数的和比缓冲区的长度长。

适用于

另请参阅