You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to connect using receiveTimeout and sendTimeout using no timeout there is no way to get it working.
TcpClient is used so the infinite timeout is System.Threading.Timeout.Infinite = -1
and OpenPop3.NET is throwing an exception when < 0
if (receiveTimeout < 0)
throw new ArgumentOutOfRangeException("receiveTimeout");
if (sendTimeout < 0)
throw new ArgumentOutOfRangeException("sendTimeout");
The text was updated successfully, but these errors were encountered:
When trying to connect using receiveTimeout and sendTimeout using no timeout there is no way to get it working.
TcpClient is used so the infinite timeout is System.Threading.Timeout.Infinite = -1
and OpenPop3.NET is throwing an exception when < 0
if (receiveTimeout < 0)
throw new ArgumentOutOfRangeException("receiveTimeout");
if (sendTimeout < 0)
throw new ArgumentOutOfRangeException("sendTimeout");
The text was updated successfully, but these errors were encountered: