IMailBeeNegativeSmtpResponseException Interface
When implemented by an exception class, indicates the SMTP server returned negative response. The response data is available in text (i.e. string) form, and SMTP response status code is also available.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public interface IMailBeeNegativeSmtpResponseException : IMailBeeNegativeTextResponseException, 
	IMailBeeNegativeResponseException

The IMailBeeNegativeSmtpResponseException type exposes the following members.

Properties
  NameDescription
Public propertyIsTransientError
Gets the status of whether the failure is permanent (the client should not retry later) or transient (the client may retry later).
Public propertyResponseCode
Gets a 3-digit SMTP response status code.
Public propertyResponseEncoding
Gets the encoding which was used to convert response bytes received from the server into a string.
(Inherited from IMailBeeNegativeTextResponseException.)
Public propertyResponseString
Gets the string which contains the negative response data.
(Inherited from IMailBeeNegativeTextResponseException.)
Top
See Also