Set the date and time after which the delivery of the message should be attempted. If ommited the delivery will be attemtped as soon as possible (equivalent to setting to DateTime.MinValue).


Namespace: Dynmark.Services.API
Assembly: Dynmark.Services.API (in Dynmark.Services.API.dll)

Syntax

Visual Basic (Declaration)
Public Property DeliverAfter As Date
C#
public DateTime DeliverAfter { get; set; }
C++
public property DateTime DeliverAfter sealed  {
    DateTime get();
    void set(DateTime value);
}
J#
/** property */
public DateTime get_DeliverAfter();

/** property */
public void set_DeliverAfter(DateTime value);
JScript
public function get DeliverAfter() : DateTime

public function set DeliverAfter(value : DateTime);

Property Value

A DateTime object identifying the delivery instant constraint

Exceptions

Exception TypeCondition
ApiArgumentExceptionThrown if the date is not between today and 1 year in the future, or if you are attempting to deliver after a specified validity period

Remarks

To set back to its default value, set equal to DateTime.MinValue

See Also