.NET client SDK for KubeMQ. Simple interface to work with the KubeMQ server.
Please visit KubeMQ Community for intallation steps.
Install using Nuget
Kubemq : https://docs.microsoft.com/en-us/nuget/quickstart/install-and-use-a-package-in-visual-studio
Please visit CSharp SDK Cookbook
The SDK implements all communication patterns available through the KubeMQ server:
- Events
- EventStore
- Command
- Query
- Queue
- .NET Framework 4.6.1
- .NET Framework 4.7.1
- .NET Standard 2.0
The only required configuration setting is the KubeMQ server address.
Configuration can be set by using one of the following:
- Environment Variable
appsettings.json
fileapp.Config
orWeb.config
file- Within the code
Set KubeMQServerAddress
to the KubeMQ Server Address
Add the following to your appsettings.json:
{
"KubeMQ": {
"serverAddress": "{YourServerAddress}:{YourServerPort}"
}
}
Simply add the following to your app.config:
<configuration>
<configSections>
<section name="KubeMQ" type="System.Configuration.NameValueSectionHandler"/>
</configSections>
<KubeMQ>
<add key="serverAddress" value="{YourServerAddress}:{YourServerPort}"/>
</KubeMQ>
</configuration>