BinaryContent (TdbmQueueMessage)
property BinaryContent:TfwBinary;
Cette propriété contient le contenu binaire du message.
Exemple :
begin
msg := TdbmQueueMessage.Create;
msg.QueueName := 'WSMQ';
....
msg.BinaryContent.LoadFromFile('c:\image.jpg');
msg.Post;
end;