Click or drag to resize
MimeKit

Pop3ClientSize Property

Get the size of the POP3 mailbox, in bytes.

Namespace: MailKit.Net.Pop3
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public long Size { get; }

Property Value

Int64
The size of the mailbox if available.
Exceptions
ExceptionCondition
ObjectDisposedException The Pop3Client has been disposed.
ServiceNotConnectedException The Pop3Client is not connected.
ServiceNotAuthenticatedException The Pop3Client is not authenticated.
Remarks

Gets the size of the POP3 mailbox, in bytes.

This value is updated as a side-effect of calling GetMessageCount(CancellationToken) or GetMessageCountAsync(CancellationToken).

See Also