UnmanagedMemoryStream.SetLength(Int64) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the length of a stream to a specified value.
public:
override void SetLength(long value);
public override void SetLength (long value);
override this.SetLength : int64 -> unit
Public Overrides Sub SetLength (value As Long)
Parameters
- value
- Int64
The length of the stream.
Exceptions
An I/O error has occurred.
The stream is closed.
The underlying memory does not support writing.
-or-
An attempt is made to write to the stream and the CanWrite property is false
.
The specified value
exceeds the capacity of the stream.
-or-
The specified value
is negative.
Remarks
If the given value is less than the current length of the stream, the stream is truncated. If the given value is larger than the current length of the stream, the stream is expanded. If the stream is expanded, the contents of the stream between the old and the new lengths are undefined.
A stream must support both writing and seeking for SetLength to work.