Click or drag to resize

BlockAllocatedMemoryStream(Byte) Constructor

Initializes a new instance of BlockAllocatedMemoryStream from specified buffer.

Namespace: GSF.IO
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.191-beta+925724bd48239ba1d4417fe63f8c4977892ab734
Syntax
public BlockAllocatedMemoryStream(
	byte[] buffer
)
View Source

Parameters

buffer  Byte
Initial buffer to copy into stream.
Exceptions
ExceptionCondition
ArgumentNullExceptionbuffer is null.
Remarks
Unlike MemoryStream, the BlockAllocatedMemoryStream will not use the provided buffer as its backing buffer. The buffer will be copied into internally managed reusable memory buffers. Subsequently, the notion of a non-expandable stream is not supported.
See Also