-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
ASP.NET Core 9 Essentials
By :
Like any web-based application, we must make them available through a server after the development stage. Applications developed in ASP.NET Core SignalR have the same characteristics and with all the power of the .NET platform, there is the possibility of hosting on internal servers and different cloud providers.
We will discuss more about hosting applications in Chapter 10. For now, we will just learn what is necessary to generate a hostable package for a SignalR application.
Hosting an ASP.NET Core SignalR application isn’t drastically different from hosting a regular ASP.NET Core web app. However, due to the real-time nature of SignalR, there are specific considerations to keep in mind.
It is important to define what the hosting model will be. In general, currently public clouds are selected, such as Azure, AWS, or GCP (Google). However, let’s understand each type of...