https://github.com/gpreviatti/azure-messaging-tools-samples
Basic project with implementation sample projects provides by Microsoft documentation of common messaging tools of azure
https://github.com/gpreviatti/azure-messaging-tools-samples
azure dotnet eventhub servicebus
Last synced: 7 months ago
JSON representation
Basic project with implementation sample projects provides by Microsoft documentation of common messaging tools of azure
- Host: GitHub
- URL: https://github.com/gpreviatti/azure-messaging-tools-samples
- Owner: gpreviatti
- License: mit
- Created: 2023-04-29T15:18:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-08T11:10:10.000Z (over 2 years ago)
- Last Synced: 2025-01-22T15:45:52.440Z (9 months ago)
- Topics: azure, dotnet, eventhub, servicebus
- Language: C#
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Azure messaging tools samples
Basic project with implementation sample projects provides by Microsoft documentation of common messaging tools of azure
## Service Bus
### Queue
[Link reference](https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-dotnet-get-started-with-queues?tabs=connection-string)
#### How to use
To send messages
```
servicebus-queue-send-win-x64.exe "" "" "" ""
```To listen messages
```
servicebus-queue-receive-win-x64.exe "" ""
```### Topic
[Link reference](https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-dotnet-how-to-use-topics-subscriptions?tabs=connection-string)
To send messages
```
servicebus-topic-send-win-x64.exe "" "" "" ""```
To listen messages
```
servicebus-topic-receive-win-x64.exe "" ""
```## Event Hub
[Link reference](https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-dotnet-standard-getstarted-send?tabs=connection-string%2Croles-azure-portal)
To send messages
```
eventhub-send-win-x64.exe "" "" ""```
To listen messages
```
eventhub-receive-win-x64.exe "" "" ""```