You are developing a mobile app and need a way for the app to communicate and fetch data from the server. What kind of service in ASP.NET Core would be best suited for this?
- Web API
- Blazor Server
- ASP.NET Core MVC
- SignalR
For mobile apps to communicate with a server, Web API is commonly used. It provides a RESTful way to fetch data and is well-suited for client-server communication in mobile apps.
Loading...
Related Quiz
- In a custom exception handling middleware, what must you do to ensure that the next middleware in the pipeline gets executed?
- The _________ class in ASP.NET Core Identity is particularly useful for creating and managing users.
- Unlike the traditional ASP.NET which relied on System.Web.dll, ASP.NET Core operates on a set of granular and modular _________ packages.
- In ASP.NET Core, the _______ tag helper can be used to generate anchor (link) elements that link to MVC actions.
- You're maintaining a large-scale application, and over time, multiple developers have added numerous routes. You've now found that some routes overlap and cause unexpected behaviors. What strategy can you adopt with attribute routing to organize and prioritize these routes more effectively?