Build2019Chat
Build2019Chat copied to clipboard
Hey, great tutorial thanks. I notice that in 2021 HubConnectionBuilder doesn't have the property WithUrl(str). Do you have a fix? Thanks
https://github.com/mindofai/SignalRChat running on local IIS Used [ngrok ](https://ngrok.com/) to access it using a public URL ```c# hubConnection = new HubConnectionBuilder() .WithUrl($"http://randomsubdomain.ngrok.io" + "/chatHub") .Build(); ``` Ran the below command to...
Hi, thank you for your example ! It help me a lot. I deploy your Server Chat Hub on my computer in IIS and it working in the browser. I...