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.
Add your answer
Loading...

Leave a comment

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