Majd
Majd

Reputation: 1368

Message queuing in Visual Studio 2010

While i was writing a piece of code in C# using ASP.NET i needed to create a message queue to store fault messages. However, I couldn't find the System.Messaging namespace in the namespace library in Visual Studio 2010. Does anyone know how can I use message queuing now?

Upvotes: 0

Views: 1136

Answers (1)

Jeff Sternal
Jeff Sternal

Reputation: 48583

The core System.Messaging classes are in their own assembly: you have to add a reference to that assembly to use them. (You should use the version from the Global Assembly Cache found on the ".NET" tab in the Add Reference dialog.)

Upvotes: 4

Related Questions