'宣言 Public Function New( _ ByVal userBuffer As System.IntPtr, _ ByVal sizeInBytes As System.Long, _ ByVal canRead As System.Boolean, _ ByVal canWrite As System.Boolean _ )
public DataStream( System.IntPtr userBuffer, System.long sizeInBytes, System.bool canRead, System.bool canWrite )
パラメータ
- userBuffer
- バッキングストアとして使用されるバッファへのポインタ。
- sizeInBytes
- 提供されたバッファのサイズ (バイト単位)。
- canRead
- バッファから読み取りを許可する必要がある場合は
true
。 それ以外の場合はfalse
。 - canWrite
- バッファへの書き込みを許可する場合は
true
。それ以外の場合はfalse
。