|
|
|||||||||||||||
|
The reschedule_message method changes the delivery schedule for a message in the fax server send queue. If the provided schedule time is for a time earlier than the current time, the message will become immediately eligible for delivery.
|
|||||||||||||||
|
Parameters: |
|||||||||||||||
|
|||||||||||||||
|
Return Value: |
|||||||||||||||
| A RESCHEDULE_MESSAGE_RESULT object containing a result code and string. | |||||||||||||||
Example: |
|||||||||||||||
public bool reschedule_messsage(string message_handle)
{
NSSOAP ns = new NSSOAP();
RESCHEDULE_MESSAGE_RESULT rm =
ns.reschedule_message(
"supervisor",
"",
message_handle,
RescheduleDateTimePicker.Value.ToUniversalTime());
if (rm.status_num != STATUS_NUM.NoError)
{
MessageBox.Show("Unable to reschedule:" + rm.status_string);
return(false);
}
return(true);
} |
|||||||||||||||
See Also: |
|||||||||||||||
| send_message, get_message_q | |||||||||||||||
|
|