adTempus API
ArcanaDevelopment.adTempus.Client Namespace / MessagingServiceProvider Class / MaxMessageLength Property


In This Topic
    MaxMessageLength Property
    In This Topic
    The maximum length for a message
    Syntax
    'Declaration
     
    
    Public Property MaxMessageLength As Integer
    public int MaxMessageLength {get; set;}
    public:
    property int MaxMessageLength {
       int get();
       void set (    int value);
    }
    Remarks

    The behavior depends on the MessagingServiceType:

    SMTP (email) Messages longer than MaxMessageLength are truncated
    SMPP (text messages) Messages longer than MaxMessageLength are truncated if SplitLongMessages is false, or split into up to MaxMessages if SplitLongMessages is true.
    See Also