Forum Discussion
Is there a way to push from a .NET program to an EventStream custom endpoint?
- 1 year ago
The custom endpoint in Eventstream is actually just an event hub namespace. And from a C# application you can send data to an event hub.
when deploying your Eventstream, just select the custom endpoint as source and you will get the endpoint and sas token to put in your application.
the same place, you can find example code snippets on how to implement the code in your application. I can't remember if C# is shown, but you will get the idea when looking at the code 😊
The custom endpoint in Eventstream is actually just an event hub namespace. And from a C# application you can send data to an event hub.
when deploying your Eventstream, just select the custom endpoint as source and you will get the endpoint and sas token to put in your application.
the same place, you can find example code snippets on how to implement the code in your application. I can't remember if C# is shown, but you will get the idea when looking at the code 😊
- Kelderic1 year agoHelper I
I got it working, thank you!