Dart.Mail Namespace > Smtp Class : AutoPipeline Property |
<DefaultValueAttribute()> Public Property AutoPipeline As Boolean
Dim instance As Smtp Dim value As Boolean instance.AutoPipeline = value value = instance.AutoPipeline
[DefaultValue()] public bool AutoPipeline {get; set;}
[DefaultValue()] public: __property bool get_AutoPipeline(); public: __property void set_AutoPipeline( bool value );
[DefaultValue()] public: property bool AutoPipeline { bool get(); void set ( bool value); }
Some servers support PIPELINING, which can increase performance by sending multiple commands without waiting for responses. Set this property to false to prevent PIPELINING, which may be desirable under some conditions (for example, a firewall does not handle it correctly).
With version 4.3, this property reflects the value stored in SmtpSession.AutoSize.