The System.Messaging namespace provides classes that allow you to connect to, monitor, and administer message queues on the network and send, receive, or peek messages.
Members of the MessageQueue class include the following methods for reading and writing messages to the queue:
The Send()()() method enables your application to write messages to the queue. Overloads of the method enable you to specify whether to send your message using a Message (which provides detailed control over the information you send) or any other managed object, including application-specific classes. The method also supports sending messages as part of a transaction.
The Receive, ReceiveById()()(), and ReceiveByCorrelationId()()() methods provide functionality for reading messages from a queue. Like the Send()()() method, these methods provide overloads that support transactional queue processing. These methods also provide overloads with time-out.
Out parameters that enable processing to continue if the queue is empty. Because these methods are examples of synchronous processing, they interrupt the current thread until a message is available, unless you specify a time-out.
The Peek method is similar to Receive, but it does not cause a message to be removed from the queue when it is read. Because Peek does not change the queue contents, there are no overloads to support transactional processing. However, because Peek, like Receive, reads messages synchronously from the queue, overloads of the method do support specifying a time-out in order to prevent the thread from waiting indefinitely.
The BeginPeek, EndPeek(IAsyncResult), BeginReceive, and EndReceive(IAsyncResult) methods provide ways to asynchronously read messages from the queue. They do not interrupt the current thread while waiting for a message to arrive in the queue.
The following methods of the MessageQueue class provide functionality for retrieving lists of queues by specified criteria and determining if specific queues exist:
Other methods of the MessageQueue class provide the following functionality:
Creating and deleting Message Queueing queues.
Using a message enumerator to step through the messages in a queue.
Using a queue enumerator for iterating through the queues on the system.
Setting ACL-based access rights.
Working with the connection cache.
The Message class provides detailed control over the information you send to a queue, and is the object used when receiving or peeking messages from a queue. Besides the message body, the properties of the Message class include acknowledgment settings, formatter selection, identification, authentication and encryption information, timestamps, indications about using tracing, server journaling, and dead-letter queues, and transaction data.
The MessageQueue component is associated with the following three formatters, which enable you to serialize and deserialize messages sent and received from queues:
The XmlMessageFormatter provides loosely coupled messaging, enabling independent versioning of serialized types on the client and server.
The ActiveXMessageFormatter is compatible with the MSMQ COM control. It allows you to send types that can be received by the control and to receive types that were sent by the control.
The BinaryMessageFormatter provides a faster alternative to the XmlMessageFormatter, but without the benefit of loosely coupled messaging.
Other classes in the Messaging namespace support code-access and ACL-based security, filtering Message properties when reading messages from a queue, and using transactions when sending and receiving messages.

Classes
|
| Class | Description |
|---|
.gif) | AccessControlEntry |
Specifies access rights for a trustee (user, group, or computer) to perform application-specific implementations of common tasks.
|
.gif) | AccessControlList |
Contains a list of access control entries, specifying access rights for one or more trustees.
|
.gif) | ActiveXMessageFormatter |
Serializes or deserializes primitive data types and other objects to or from the body of a Message Queuing message, using a format that is compatible with the MSMQ ActiveX Component.
|
.gif) | BinaryMessageFormatter |
Serializes or deserializes an object, or an entire graph of connected objects, to or from the body of a Message Queuing message, using a binary format.
|
.gif) | Cursor |
A Cursor is used to maintain a specific location in a MessageQueue when reading the queue's messages.
|
.gif) | DefaultPropertiesToSend |
Specifies the default property values that will be used when sending objects other than Message instances to a message queue.
|
.gif) | Message |
Provides access to the properties needed to define a Message Queuing message.
|
.gif) | MessageEnumerator |
Provides a forward-only cursor to enumerate through messages in a message queue.
|
.gif) | MessagePropertyFilter |
Controls and selects the properties that are retrieved when peeking or receiving messages from a message queue.
|
.gif) | MessageQueue |
Provides access to a queue on a Message Queuing server.
|
.gif) | MessageQueueAccessControlEntry |
Specifies access rights for a trustee (user, group, or computer) to perform Message Queuing tasks.
|
.gif) | MessageQueueCriteria |
Filters message queues when performing a query using the MessageQueue class's GetPublicQueues method.
|
.gif) | MessageQueueEnumerator |
Provides a forward-only cursor to enumerate through messages in a message queue.
|
.gif) | MessageQueueException |
The exception that is thrown if a Microsoft Message Queuing internal error occurs.
|
.gif) | MessageQueueInstaller |
Allows you to install and configure a queue that your application needs in order to run. This class is called by the installation utility, for example, InstallUtil.exe, when installing a MessageQueue.
|
.gif) | MessageQueuePermission |
Allows control of code access permissions for messaging.
|
.gif) | MessageQueuePermissionAttribute |
Allows declarative MessageQueue permission checks.
|
.gif) | MessageQueuePermissionEntry |
Defines the smallest unit of a code access security permission set for messaging.
|
.gif) | MessageQueuePermissionEntryCollection |
Contains a strongly typed collection of MessageQueuePermissionEntry objects.
|
.gif) | MessageQueueTransaction |
Provides a Message Queuing internal transaction.
|
.gif) | MessagingDescriptionAttribute |
Specifies a description for a property or event.
|
.gif) | PeekCompletedEventArgs |
Provides data for the PeekCompleted event. When your asynchronous peek operation calls an event handler, an instance of this class is passed to the handler.
|
.gif) | ReceiveCompletedEventArgs |
Provides data for the ReceiveCompleted event. When your asynchronous receive operation calls an event handler, an instance of this class is passed to the handler.
|
.gif) | SecurityContext |
Represents the security context for a message in a queue.
|
.gif) | Trustee |
Specifies a user account, group account, or logon session to which an access control entry applies.
|
.gif) | XmlMessageFormatter |
Serializes and deserializes objects to or from the body of a message, using the XML format based on the XSD schema definition.
|

Interfaces
|
| Interface | Description |
|---|
.gif) | IMessageFormatter |
Serializes or deserializes objects from the body of a Message Queuing message.
|

Delegates