SmtpServer.PIPELINING Property


Gets or sets using PIPELINING extension with SMTP server.

[Visual Basic]
Public Property PIPELINING As Boolean
[C#]
public bool PIPELINING {get; set;}
[C++]
public: __property bool get_PIPELINING();
public: __property void set_PIPELINING(bool);
[JScript]
public function get PIPELINING() : bool;
public function set PIPELINING(bool);

Property Value

A boolean value indicates if the client uses PIPELINING extension with SMTP server.

Remarks

PIPELINING extension can decrease the SMTP conversation to increase the performance, but not every SMTP server supports this feature. If the SMTP server doesn't support PIPELINING extension, even this property is set to true, the PIPELINING won't be enabled.