|
|
A SEND_MESSAGE_RESULT object is returned from a call to
send_message.
| class SEND_MESSAGE_RESULT { |
| STATUS_NUM
status_num; |
// Status code |
| string
status_string; |
// Status string |
| uint
extended_error; |
// Error code if status_num equals ExtendedError |
| string
message_handle; |
// Handle of new message |
| } |
|
Members: |
|
| status_num |
Contains a value from the STATUS_NUM
enumeration.
|
| status_string |
Contains a status string.
|
| extended_error |
Contains an extended error code, if
status_num equals ExtendedError.
|
| message_handle |
Contains the handle of a new mesage on the
fax server if status_num equals NoError.
|
|
Remarks: |
|
The new message handle can be used in calls to
get_message, reschedule_message,
abort_message,
delete_message, and
copy_message. The handle does not
necessarily need to be saved, as a call to
get_message_q can be used to retrieve information (including the
handle) for all messages in any fax server queue. |
See Also: |
|
send_message |