Click or drag to resize

SmtpExtension Class

Represents extensions supported by the remote server. You can use SupportedExtensions method to obtain the list of all extensions supported by the remote server.
Inheritance Hierarchy

Namespace: Limilabs.Client.SMTP
Assembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntax
[SerializableAttribute]
public class SmtpExtension : BasicConstant

The SmtpExtension type exposes the following members.

Properties
 NameDescription
Public propertyName Gets the name of the constant.
(Inherited from BasicConstant)
Top
Methods
 NameDescription
Public methodEquals(BasicConstant) Determines whether the specified BasicConstant object is equal to the current one. Names are compared case insensitive.
(Inherited from BasicConstant)
Public methodEquals(Object) Determines whether the specified object is equal to the current object.
(Inherited from BasicConstant)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCode Serves as a hash function for a particular type.
(Inherited from BasicConstant)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToString Returns the Name of this object.
(Inherited from BasicConstant)
Top
Fields
 NameDescription
Public fieldStatic memberAuth AUTH extension. You can use SupportedAuthenticationMethods to obtain all authentication methods supported by the remote server.
Public fieldStatic memberBinaryMime BINARYMIME extension. (RFC 3030)
Public fieldStatic memberBit8Mime 8BITMIME extension. (RFC 6152)
Public fieldStatic memberChunking CHUNKING extension. Allows sending message in chunks, without SMTP's \r\n.->\r\n.. conversion, which improves memory usage. (RFC 3030)
Public fieldStatic memberDSN DSN extension. It allows client to specify the conditions under which a Delivery Status Notification should be generated (Configuration, DeliveryNotification) (RFC 3461)
Public fieldStatic memberEnhancedStatusCodes ENHANCEDSTATUSCODES extension. It allows server to augment its responses with the enhanced mail system status codes. Server that support this extension is going to provide EnhancedStatusCode in its responses. (RFC 2034, RFC 1893)
Public fieldStatic memberPipelining PIPELINING extension. It allows client to transmit groups of SMTP commands in batches without waiting for a response to each individual command. SendMessage(IMail) method uses this feature to speed up sending messages. (RFC 2920)
Public fieldStatic memberSize SIZE extension.
Public fieldStatic memberSmtpUTF8 UTF8SMTP extension. Allows usage of UTF-8 email addresses (both local and domain part) without any encoding. Bit8Mime must be announced by the server when this extension is announced. BODY=8BITMIME or BODY=BINARYMIME must be used by the client if SMTPUTF8 extension is used. (RFC 6531)
Public fieldStatic memberStartTLS STARTTLS is supported. You can use StartTLS to secure the connection.
Top
See Also