Dodkin.Dispatch
0.5.3
See the version list below for details.
dotnet add package Dodkin.Dispatch --version 0.5.3
NuGet\Install-Package Dodkin.Dispatch -Version 0.5.3
<PackageReference Include="Dodkin.Dispatch" Version="0.5.3" />
paket add Dodkin.Dispatch --version 0.5.3
#r "nuget: Dodkin.Dispatch, 0.5.3"
// Install Dodkin.Dispatch as a Cake Addin #addin nuget:?package=Dodkin.Dispatch&version=0.5.3 // Install Dodkin.Dispatch as a Cake Tool #tool nuget:?package=Dodkin.Dispatch&version=0.5.3
Dodkin
Thin MSMQ wrapper library
This is a beta version not intended for use in production. The API is subject to change.
MSMQ Message Queue Library
This is a C# library for working with Microsoft Message Queue (MSMQ) that provides classes for creating, reading, writing, and managing message queues and messages.
Features
- Create and manage message queues
- Read messages from a message queue
- Write messages to a message queue
- Move messages to a message subqueue
- Navigate through a message queue using a cursor
- Manage transactions for a message queue
- Handle exceptions that may occur when working with a message queue
Getting Started
Once you have referenced the library from NuGet, you can start using its classes and interfaces in your code. Here is an example of how to create and use a message queue:
using Dodkin;
// Create a new message queue
var queueName = MessageQueueName.Parse(".\\private$\\myqueue");
MessageQueue.Create(queueName);
var queueFactory = new MessageQueueFactory();
// Create a new message
var messageBody = "Hello, world!"u8;
var message = new Message(messageBody);
// Write the message to the queue
var writer = queueFactory.CreateWriter(queueName);
writer.Write(message);
Documentation
The library includes XML documentation comments for all classes and interfaces, which can be viewed in Visual Studio by hovering over a class or interface name or by pressing F12.
Contributing
Contributions to this library are welcome! If you find a bug or would like to suggest a new feature, please open an issue on the GitHub repository. If you would like to contribute code, please fork the repository and submit a pull request with your changes.
License
This library is licensed under the MIT License. See the LICENSE file for details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- Dodkin (>= 0.5.3)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.1)
- RelayTk (>= 2.4.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Dodkin.Dispatch:
Package | Downloads |
---|---|
Storefront.UserAgent
Storefront UserAgent interaction library |
GitHub repositories
This package is not used by any popular GitHub repositories.