vote up 0 vote down star
1

If a queue is empty and you don't want to block for too long, you risk getting a System.Messaging.MessageQueueException.

How would you tell the difference between a timeout on waiting for a message and a real error?

flag

57% accept rate

1 Answer

vote up 1 vote down check

Try this:

MessageQueueException.MessageQueueErrorCode == MessageQueueErrorCode.IOTimeout

See http://msdn.microsoft.com/en-us/library/t5te2tk0.aspx for a sample similar to what you're trying to do.

link|flag
Thanks, I can't believe I overlooked that property. – Jonathan Allen Nov 4 at 15:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.