GlobalPipelining Property
Gets or sets whether pipelining (joining commands in batches) must be enabled by default.

Namespace: MailBee
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public static bool Pipelining { get; set; }

Property Value

Type: Boolean
If true, the pipelining will be enabled by default; otherwise, disabled. The default value is true.
Remarks
If this property value is true and pipelining was not explicitly disabled and the mail server supports pipelining, it will be used. Using pipelining greatly increases performance of communication with the mail server.
Note Note
If SafeMode is true, Pipelining value will be set to false and the pipelining will be disabled.
The developer, however, may still connect to the mail server with pipelining enabled using Connect method overload which explicitly specifies whether pipelining should be used or not. For instance, for Pop3 class, such overload is Connect(String, Int32, Boolean).
See Also