MailKit.Net.Imap.ImapStream.SetLength C# (CSharp) Method

SetLength() public method

Sets the length of the stream.
It is not possible to set the length of a ImapStream.
/// The stream does not support setting the length. ///
public SetLength ( long value ) : void
value long The desired length of the stream in bytes.
return void
		public override void SetLength (long value)
		{
			throw new NotSupportedException ();
		}