Assembly: mscorlib (in mscorlib.dll)
Public Sub New ( _ buffer As Byte(), _ index As Integer, _ count As Integer, _ writable As Boolean, _ publiclyVisible As Boolean _ )
Dim buffer As Byte() Dim index As Integer Dim count As Integer Dim writable As Boolean Dim publiclyVisible As Boolean Dim instance As New MemoryStream(buffer, index, count, writable, publiclyVisible)
public MemoryStream ( byte[] buffer, int index, int count, bool writable, bool publiclyVisible )
public: MemoryStream ( array<unsigned char>^ buffer, int index, int count, bool writable, bool publiclyVisible )
public MemoryStream ( byte[] buffer, int index, int count, boolean writable, boolean publiclyVisible )
public function MemoryStream ( buffer : byte[], index : int, count : int, writable : boolean, publiclyVisible : boolean )
Parameters
- buffer
-
The array of unsigned bytes from which to create this stream.
- index
-
The index into buffer at which the stream begins.
- count
-
The length of the stream in bytes.
- writable
-
The setting of the CanWrite property, which determines whether the stream supports writing.
- publiclyVisible
-
true to enable GetBuffer, which returns the unsigned byte array from which the stream was created; otherwise, false.
| Exception type | Condition |
|---|---|
| buffer is a null reference (Nothing in Visual Basic). |
|
| index or count is negative. |
|
| The buffer length minus index is less than count. |
For an example of creating a file and writing text to a file, see How to: Write Text to a File. For an example of reading text from a file, see How to: Read Text from a File. For an example of reading from and writing to a binary file, see How to: Read and Write to a Newly Created Data File.
The CanRead and CanSeek properties are both set to true. Capacity is set to count.
The new stream instance can be written to, but the Capacity of the underlying byte array cannot be changed. The length of the stream cannot be set to a value greater than the initial length of the specified byte array; however, the stream can be truncated (see SetLength).
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.