MessageQueue
Provides access to a queue on a Message Queuing server.
Last updated
Was this helpful?
Provides access to a queue on a Message Queuing server.
Last updated
Was this helpful?
The Wisej.NET MessageQueue
component wraps Windows Message Queuing technology, enabling communication between applications across heterogeneous networks and systems, even when temporarily offline. Applications can send, receive, or peek (read without removing) messages from queues.
Message Queuing is an optional Windows component that must be installed separately.
The MessageQueue
class provides methods for queue interaction:
Send(Object)
: Send messages to the queue
Peek
: Read messages without removal
Receive
: Retrieve and remove messages
Create new queues or connect to existing ones:
Specify a path in the constructor to connect to existing queues
Create new queues on the server
Configure properties like Category
and Label
after association