BufferedStream::SetLength Method (Int64)
Sets the length of the buffered stream.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System::Int64
An integer indicating the desired length of the current buffered stream in bytes.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | value is negative. |
| IOException | The stream is not open or is null. |
| NotSupportedException | The stream does not support both writing and seeking. |
| ObjectDisposedException | Methods were called after the stream was closed. |
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.
Available since 1.1