https://github.com/nitin27may/azure-service-bus-dotnet
Azure Service Bus (.Net 7) implementation example
https://github.com/nitin27may/azure-service-bus-dotnet
azureservicebus dotnet6 servicebus
Last synced: 6 months ago
JSON representation
Azure Service Bus (.Net 7) implementation example
- Host: GitHub
- URL: https://github.com/nitin27may/azure-service-bus-dotnet
- Owner: nitin27may
- License: mit
- Created: 2022-09-30T21:24:54.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T00:39:06.000Z (almost 3 years ago)
- Last Synced: 2025-02-18T04:56:27.322Z (8 months ago)
- Topics: azureservicebus, dotnet6, servicebus
- Language: C#
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Azure Service Bus Example
Azure Service bus boilerplate.
## ImportantUpdate the Enviornment variables in appsettings.
First object is related to Service Bus connection and 'MailSettings' is used to send emails.
```
"ConnectionStrings": {
"ServiceBus": "",
"QueueName": ""
},
"MailSettings": {
"Mail": "",
"DisplayName": "",
"Password": "",
"Host": "smtp.gmail.com",
"Port": 587
}
```## Next Todo
Next development
* [x] Implement Service Bus Queue
* [x] Swagger for API Documentation
* [ ] Implement Topics
* [ ] Implment Consumer as separate project
* [ ] Implement Sender and Consumer as part of Azure Functions## Build with
Describes which version .
| Name | Version |
| ---------- | -------- |
| .Net | v7.x |
| Swagger | v6.4.0 |## Objective
* Working Sample for Service Bus Queue
* Working Sample for Service Bus Topic
* Get hands on the Messaging Queue