EmailAddressValidatorPipelining Property |
Gets or sets whether to use commands pipelining if it's supported by the SMTP MX server.
Namespace: MailBee.AddressCheckAssembly: MailBee.NET.45 (in MailBee.NET.45.dll) Version: 10.0.45.502
Syntaxpublic bool Pipelining { get; set; }
Public Property Pipelining As Boolean
Get
Set
Property Value
Type:
BooleanA
Boolean value which specifies whether to join
SMTP commands in batches if the server supports
PIPELINING extension. The default value is
Pipelining.
Remarks
ESMTP PIPELINING extension may provide a slight performance benefit as both the sender (MAIL FROM command) and recipient (RCPT TO)
are submitted within the same data chunk (one round-trip to the server instead of two). If the server does not support pipelining, this value is ignored.
See Also