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.
We'll cover the following...
We'll cover the following...
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
SignalRServerproject folder.
dotnet run
Then, once the application ...