MailKit.Net.Imap.ImapStream.SetLength C# (CSharp) Méthode

SetLength() public méthode

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.
Résultat void
		public override void SetLength (long value)
		{
			throw new NotSupportedException ();
		}