1 2 3 4 5 6 |
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.0.0-rc1-final" /> <PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="1.0.0-rc1-final" /> |
How to Send Email Using SignalR
This post shows how SignalR could be used to send messages between different C# console clients using Message Pack as the protocol. An ASP.NET Core web application is used to host the SignalR Hub. Setting up the Message Pack SignalR server Add the Microsoft.AspNetCore.SignalR and the Microsoft.AspNetCore.SignalR.MsgPack NuGet packages to the ASP.NET Core server application where the SignalR Hub will be hosted. The Visual Studio NuGet Package Manager can be used for this. Or just add it directly to the .csproj project file.
Setup