MailBeeSmtpNegativeResponseExceptionIsTransientError Property |
Gets the status of whether the failure is permanent (the client should not retry
later) or transient (the client may retry later).
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public bool IsTransientError { get; }
Public ReadOnly Property IsTransientError As Boolean
Get
Property Value
Type:
Booleantrue if the failure is transient, and the client may try
again at a later time;
false if the client should not try to send the same
command with the same parameters later.
Implements
IMailBeeNegativeSmtpResponseExceptionIsTransientErrorRemarks Transient errors correspond to 4xx status code, while permanent errors - to
5xx.
Typical case of a transient error is "Server is busy, try later". "Account does
not exist" is a typical example of a permanent error. "Account is over quota"
can be both permanent or transient error, depending on the mail server implementation.
See Also