You are building a real-time dashboard which updates the user interface as soon as data changes on the server. Which technology in the ASP.NET Core ecosystem would be most suitable for this?

  • SignalR
  • WebSocket
  • WebSockets API
  • AJAX
SignalR is a library in ASP.NET Core designed specifically for real-time web applications. It allows server-to-client and client-to-server communication over various transport protocols, making it an ideal choice for real-time dashboards. SignalR abstracts away the complexities of WebSocket and other transport protocols, simplifying real-time communication.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *