Message Property
The message to send.
Syntax
property Message: TiotAMQPMessage read get_Message write set_Message;
Remarks
This property holds an AMQPMessage object whose fields are used to construct a message to send when SendMessage is called.
Refer to SendMessage for more information.
amqp.Message.ValueType = AMQPValueTypes.mvtString;
amqp.Message.Value =
"Hello World!"
;
amqp.SendMessage(
"SenderLinkName"
);
This property is not available at design time.