SmtpMessageDataChunkSentEventArgsDataTotalLength Property
Gets the length (in bytes) of the message data being sent.

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

Property Value

Type: Int32
The length (in bytes) of the message data to be sent.
Remarks

The following formula can be used to determine percentage of sending the message data to the SMTP server:

sendProgress = (DataTotalLength * 100) / TotalBytesSent.

See Also