SmtpMessageDataChunkSentEventArgsDataTotalLength Property |
Gets the length (in bytes) of the message data being sent.
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public int DataTotalLength { get; }
Public ReadOnly Property DataTotalLength As Integer
Get
Property Value
Type:
Int32The 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