|
|
|||||||||||||
|
The delete_message method deletes any message at the server. If the message is currently queued for transmission or is currently transmitting, this method will first abort the transmission and then delete the message from the queue.
|
|||||||||||||
|
Parameters: |
|||||||||||||
|
|||||||||||||
|
Return Value: |
|||||||||||||
| A DELETE_MESSAGE_RESULT object containing a result code and string. | |||||||||||||
Example: |
|||||||||||||
public void delete_message(string message_handle)
{
NSSOAP ns = new NSSOAP();
ns.delete_message("supervisor","",message_handle);
} |
|||||||||||||
See Also: |
|||||||||||||
| send_message, get_message_q, abort_message | |||||||||||||
|
|