Article notes

What unified ASP.NET Web API and MVC into one framework?
From the beginning, ASP.NET Web API had been designed to be a service-based framework for building what kind of services?
How does the Pro C# book say JSON is pronounced?
What are requests that originate from one server to the API of another server?
What are requests that originate from another server communicating with an API?
What is short for cross-origin requests?
What method must be called before adding the CORS policy to the services collection in an ASP.NET Core app?
What does the Pro C# book define as "URI that points to a physical resource on a network?"
What do web APIs use to communicate success or failure (HTTP)?
What attribute provides REST-specific rules, conventions, and behaviors when combined with the ControllerBase class?
What status code will be returned by an ASP.NET Core controller if there is an issue with model binding?
What technique for web API versioning would leave 1.0 action methods in a ValuesController and create a Values2Controller to hold the version 2.0 methods?
What are the two open source libraries the Pro C# book mentions add Swagger into ASP.NET Core APIs?
What is the file that Swashbuckle generates that contains information for the site, each endpoint, and any objects involved in the endpoints?
What is the interactive UI that Swashbuckle provides to present the contents of swagger.json?
What is the syntax for method signature comments that .NET can generate an XML documentation file?
What does the Pro C# book call concatenating a username and password with a colon, Base64 encoding it, and putting this in the Authorization header of the request?
What attribute can be used in ASP.NET Core at a controller or action to require a user to be authenticated in order to access the resource?
What attribute can be used in ASP.NET Core at a controller or action to turn off protection for a resource?
Previous Next