Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

BufferedStream::SetLength Method (Int64)

 

Sets the length of the buffered stream.

Namespace:   System.IO
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual void SetLength(
	long long value
) override

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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft