Stream.ValidateBufferArguments(Byte[], Int32, Int32) 方法

定义

验证为在 上 Stream读取和写入方法提供的参数。

protected:
 static void ValidateBufferArguments(cli::array <System::Byte> ^ buffer, int offset, int count);
protected static void ValidateBufferArguments (byte[] buffer, int offset, int count);
static member ValidateBufferArguments : byte[] * int * int -> unit
Protected Shared Sub ValidateBufferArguments (buffer As Byte(), offset As Integer, count As Integer)

参数

buffer
Byte[]

传递给读取或写入方法的数组“buffer”参数。

offset
Int32

传递给读取或写入方法的整数“offset”参数。

count
Int32

传递给读取或写入方法的整数“count”参数。

例外

buffernull

offset 超出 的 buffer边界, 或 count 为负数,或者由 的组合 offset 指定的范围,并且 count 超出了 的 buffer长度。

适用于