Posts

Showing posts from October, 2019

Blazor C# : Run on Web assembly or the Server

Run on WebAssembly or the server Blazor can run your client-side C# code directly in the browser, using WebAssembly. Because it's real .NET running on WebAssembly, you can re-use code and libraries from server-side parts of your application. Alternatively, Blazor can run your client logic on the server. Client UI events are sent back to the server using SignalR - a real-time messaging framework. Once execution completes, the required UI changes are sent to the client and merged into the DOM . https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor