Declaration
Visual C#:
int SendRetryTimes;
Visual C++:
long SendRetryTimes;
Visual Basic:
Dim SendRetryTimes As Integer
Delphi:
property SendRetryTimes : Integer;
Remarks
This property indicates the retry time of a message delivery. When sending a segmented message such as a concatenated message, you'd better set the property value to a number more than '1', say '3' for example. Thus during a network busy period, a sub-message can retry the said times in order to keep a persistent data transmission and improve the total successful delivery ratio after a delivery failure.
The default value is set to '1' in order to disable the retry feature.
See Also SendTimeout, SendInterval, SendSMS