ScheduledDelivery Property
Tells the server when to deliver the current message.
Syntax
[VB.NET] Public Property ScheduledDelivery As String
[C#] public string ScheduledDelivery {get; set;}
Remarks
This property is used by the component when sending a message to inform the Message Center (MC) to forward the message to the intended recipients at a specific time. It can be set using absolute or relative time formats.
Absolute Time Format is a 16-character string represented as "YYMMDDhhmmsstnnp" where:
YY | the last two digits of the year (00-99) |
MM | month (01-12) |
DD | day (01-31) |
hh | hour (00-23) |
mm | minute (00-59) |
ss | second (00-59) |
t | tenths of a second (0-9) |
nn | quarter-hour time difference between local time and UTC time (00-48) |
p | "+" or "-" indicating the direction of the time offset in nn |
Relative Time Format is the same 16-character string where "p" should be set to "R" for "relative". For relative time, "tnn" are ignored and thus should be set to a constant value of "000".
Default Value
""