Hi,
I want to use the ScheduledEnqueueTimeUTC property of the BrokeredMessage to send the message to a service bus queue because I want this message to appear only in a particular delay (1 hour later).
I have this code to set the property:
BrokeredMessage outboundMessage = new BrokeredMessage(); outboundMessage.ScheduledEnqueueTimeUtc = DateTime.UtcNow.AddHours(1);
With the ServiceBus explorer, even if I set this property, I'm always able to receive the message !
Is it really working with Service Bus for Windows Server 1.1 ?
Thanks.