You've been asked to add a feature to your ASP.NET Core web application that allows live chat functionality. Which ASP.NET Core technology would help facilitate this feature?
- SignalR
- Entity Framework Core
- ASP.NET Web Forms
- Blazor
SignalR is a real-time web framework in ASP.NET Core that enables features like live chat. It allows bi-directional communication between the server and connected clients, making it ideal for building interactive and real-time applications. The other options are not related to live chat functionality.
Loading...
Related Quiz
- The default convention in ASP.NET Core MVC looks for views in the _________ folder.
- You are new to web development and you've heard about ASP.NET Core. What is the primary language used to code in this framework?
- What advantage does the "Web Application (Model-View-Controller)" template offer over the "Web Application" template in terms of structuring the application?
- How can you enforce a strict null check in Razor views to catch potential null reference issues at compile-time?
- To implement Two-Factor Authentication (2FA) in ASP.NET Core Identity, the _________ property must be enabled for the user.