You're working on an ASP.NET Core project where the client needs real-time updates from the server without constantly polling the server. Which technology in ASP.NET Core would you leverage?
- SignalR
- gRPC
- WebSockets
- REST API
In this scenario, you would leverage SignalR, which is a real-time communication library for ASP.NET Core. SignalR allows for bi-directional communication between the client and server, making it ideal for scenarios where you need real-time updates without the overhead of constant polling.
Loading...
Related Quiz
- You're trying to locate your application's main CSS files in an ASP.NET Core project. In which directory would you typically find them?
- What distinguishes the Kestrel web server in the ASP.NET Core ecosystem?
- In a team development scenario, two developers have created separate migrations for different features at the same time. Before merging these changes into the main branch, what precautions or steps should be taken regarding the Identity migrations?
- While exploring an ASP.NET Core application, you notice a URL pattern like /Books/Details/3. What does the 3 represent in terms of routing?
- In the earlier versions of ASP.NET Core that used project.json, which section would you look into to find out the target framework(s) for the application?