Search⌘ K

Launching the .NET Client

Explore how to launch and run the SignalR .NET client within a standalone application. Understand the steps to start the SignalR server and client, test message broadcasting between console and browser clients, and verify real-time bidirectional communication.

Getting the .Net client started

First, we'll need to launch our SignalR server application. We can do so by:

  • Executing the following command from the SignalRServer project folder.

dotnet run

Then, once the application ...