Skip to content
Advertisement

Tag: signalr

Connecting NodeJS app to SignalR (with .NET Core 3)

I have a server running SignalR using .NET Core 3. The project was started with the template and I followed a guide (https://learn.microsoft.com/en-gb/aspnet/core/tutorials/signalr?tabs=visual-studio&view=aspnetcore-3.0). I have created a clone of the project, and can successfully connect to the server and can receive messages as expected. This also means I added CORS. I want to be able to use SignalR in a

How to use SignalR to send data to a specific user?

I have a client which receives messages over SignalR. It is working great but it is more like a broadcast. I would like to be able to send messages to a specific client. On the client-side I have a userId and I set up my connection like this: On the server-side (Azure Function written in JavaScript) I have a message

Advertisement