Pop3Noop2 Method
Sends a command to the POP3 server to keep the connection alive.

Namespace: MailBee.Pop3Mail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public bool Noop2()

Return Value

Type: Boolean
true if the method succeeds; otherwise, false.
Exceptions
ExceptionCondition
MailBeeExceptionAn error occurred and ThrowExceptions is true.
Remarks
The developer can use this method to keep the POP3 server from timing out the connection when there is no real activity. This method actually sends STAT command to the server. This seems to be more reliable solution than the standard NOOP command which is ignored by some POP3 servers.
See Also