Launching the WebSocket Client
Learn how the WebSocket client works.
We'll cover the following...
We'll cover the following...
Getting the WebSocketClient started
We will launch our SignalRServer project by executing the following command in the project directory:
dotnet run
Then, we will execute the same command inside the WebSocketClient project directory.
When our WebSocket client application launches, it will ask us to provide the URL to the SignalR endpoint. But remember that we are dealing with WebSocket protocol here and not with ...