Reputation: 1368
After sending the BrokeredMessage to the queue, like below
BrokeredMessage msg = new BrokeredMessage(content); client.Send(msg);
Is there any way to get the value of this msg.LockToken?
msg.LockToken
Upvotes: 9
Views: 981
Reputation: 6426
You can get LockToken from Message.SystemProperties.LockToken.
Upvotes: 2