hello everybody:
I want to set the bodystream and body property in Message of msmq like below
Message m = new Message();
m.Body = "This message have a file attechment";
m.BodyStream = new FileStream(filePath);
but when i read the bodystream,every byte in it is zero,I want to know whether msmq can use bodystream and body at the same time?
Thanks.