Send Method (original) (raw)

Summary

Places a message in Microsoft message queue (MSMQ).

Syntax

static void Send(String ^qName, String ^version, String ^messagetype, Object ^obj); 

Parameters

_qName_The messaging queue name, if the queue does not exist it will be created.

_version_Message specific version, this is useful for later implmentations to keep backward compatibility.

You may later query messages using the version number you are interested in.

_messagetype_Type of the message, this can be anything like "notification" or "updates"...etc.

You may later query messages using the version number you are interested in.

_obj_A serializable object that has the actual parameter of the message, this is user defined and can be anything.

An example of this is and object that has file name, id, and a time stamp.

Leadtools.Dicom.Common Assembly