When overridden in a derived class, sets the length of the current stream.
public override void SetLength(
long
)
'Declaration
Public Overrides NotOverridable Sub SetLength( _
ByVal As Long _
)
'Usage
Dim instance As ChunkedMemoryStream
Dim value As Long
instance.SetLength(value)
Parameters
- value
- The desired length of the current stream in bytes.
Exception | Description |
System.NotSupportedException | The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output. |