Click or drag to resize
MimeKit

BoundStreamSetLength Method

Set the length of the stream.

Namespace: MimeKit.IO
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public override void SetLength(
	long value
)

Parameters

value  Int64
The desired length of the stream in bytes.
Exceptions
ExceptionCondition
ObjectDisposedException The stream has been disposed.
NotSupportedException The stream does not support setting the length.
IOException An I/O error occurred.
Remarks
Updates the EndBoundary to be StartBoundary plus the specified new length. If the BaseStream needs to be grown to allow this, then the length of the BaseStream will also be updated.
See Also