ff1093d6c5
Release 3.4.0 |
||
---|---|---|
.github | ||
build | ||
src/Microsoft.Azure.ServiceBus | ||
test/Microsoft.Azure.ServiceBus.UnitTests | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
CODEOWNERS | ||
Directory.Build.props | ||
LICENSE | ||
Microsoft.Azure.ServiceBus.sln | ||
README.md | ||
appveyor.yml | ||
service-bus.png | ||
thirdpartynotice.txt |
README.md
Microsoft Azure Service Bus Client for .NET
Build/Package | Status |
---|---|
master | |
dev | |
Microsoft.Azure.ServiceBus |
This is the next generation Service Bus .NET client library that focuses on queues & topics. If you are looking for Event Hubs and Relay clients, follow the below links:
Azure Service Bus is an asynchronous messaging cloud platform that enables you to send messages between decoupled systems. Microsoft offers this feature as a service, which means that you do not need to host any of your own hardware in order to use it.
Refer to the online documentation to learn more about Service Bus.
This library is built using .NET Standard 1.3. For more information on what platforms are supported see .NET Platforms Support.
How to provide feedback
See our Contribution Guidelines.
How to get support
See our Support Guidelines
FAQ
Where can I find examples that use this library?
https://github.com/Azure/azure-service-bus/tree/master/samples
How do I run the unit tests?
In order to run the unit tests, you will need to do the following:
-
Deploy the Azure Resource Manager template located at /build/azuredeploy.json by clicking the following button:
Running the above template will provision a standard Service Bus namespace along with the required entities to successfully run the unit tests.
-
Add an Environment Variable named
azure-service-bus-dotnet/connectionstring
and set the value as the connection string of the newly created namespace. Please note that if you are using Visual Studio, you must restart Visual Studio in order to use new Environment Variables.
Once you have completed the above, you can run dotnet test
from the /test/Microsoft.Azure.ServiceBus.UnitTests
directory.