GlobalPipelining Property |
Gets or sets whether pipelining (joining commands in batches) must be enabled by default.
Namespace: MailBeeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public static bool Pipelining { get; set; }
Public Shared Property Pipelining As Boolean
Get
Set
Property Value
Type:
BooleanIf
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 |
---|
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