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

Seek() public method

Sets the position within the current stream.
It is not possible to seek within a ImapStream.
/// The stream does not support seeking. ///
public Seek ( long offset, SeekOrigin origin ) : long
offset long The offset into the stream relative to the .
origin SeekOrigin The origin to seek from.
return long
		public override long Seek (long offset, SeekOrigin origin)
		{
			throw new NotSupportedException ();
		}