BufferedStream.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 the buffered stream.
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
An integer indicating the desired length of the current buffered stream in bytes.
Exceptions
value
is negative.
The stream is not open or is null
.
The stream does not support both writing and seeking.
Methods were called after the stream was closed.
Remarks
The buffer is flushed before setting the length of the underlying data source or repository. If the specified value is less than the current length of the buffered stream, the buffered stream is truncated. If the specified value is larger than the current length of the buffered stream, the buffered stream is expanded. If the buffered stream is expanded, the contents of the buffered stream between the old and the new lengths are not defined.
SetLength
flushes any buffered writes if necessary.
A stream must support both writing and seeking for SetLength
to work.