GlobalMaxMultiLineDataLength Property
Gets or sets the maximum length (in bytes) of the multi-line data (request to a server or response from a server) which will be inserted into the log without truncation.

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

Property Value

Type: Int32
An integer value containing the maximum length (in bytes) of the multi-line data (request to a server or response from a server) which will be inserted into the log without truncation. The default value is 128.
Exceptions
ExceptionCondition
MailBeeInvalidArgumentExceptionvalue is negative.
Remarks
This property allows the developer to limit the maximum length of large textual data (such as client requests and server responses) to be inserted in the log. This parameter has no effect if logging is not used.
Note Note
POP3 requests and SMTP responses are always printed into the log completely. This is because POP3 requests and SMTP responses are small, and all the information in this data is very important and should not be truncated.
See Also