SignalR in ASP.NET Core is used to establish which type of communication?
- One-way communication
- Synchronous communication
- Real-time, bidirectional communication
- Offline communication
SignalR in ASP.NET Core is used to establish real-time, bidirectional communication between the server and connected clients. It's especially useful for building applications that require instant updates and interactions, such as chat applications, live notifications, or online gaming. It doesn't handle one-way, synchronous, or offline communication.
Loading...
Related Quiz
- How did project.json handle transitive dependencies differently than the NuGet approach in previous ASP.NET versions?
- In an ASP.NET Core project, which folder typically contains static files like images, scripts, and stylesheets?
- The asp-action attribute in a Razor form specifies the _________ to which the form will be submitted.
- If a developer is looking to quickly scaffold a new ASP.NET Core controller, which CLI command would they most likely use?
- To create a user programmatically in ASP.NET Core, you would typically make use of which method?