Reputation: 4304
There seems to be little documentation on the new WebAssembly ASP.NET Core hosted model. I realise that Blazer WebAssembly model is in preview until May 2020, however, once the latest preview template is installed in Visual Studio 2019, there is the option to use ASP.NET Core hosted.
From what I can gather, this model appears to be a hybrid between the Blazor Server App and the Blazor WebAssembly App hosting models in that in addition to using the client to render in WebAssembly, also employs server technology, e.g. SignalR.
What would be the benefits of using this hosting model?
Upvotes: 2
Views: 365
Reputation: 1068
What would be the benefits of using this hosting model?
In the hosted model, the server will:
In the hosted model, you do not need SignalR to get the Blazor app working
Upvotes: 1