Take advantage of API versioning in ASP.NET Core to manage the impact of changes to your APIs on your clients When developing APIs, you should keep one thing in mind: Change is inevitable. When your ...
Parameter binding from forms, antiforgery tokens, and Native AOT are now supported in ASP.NET Core. Here’s how to take advantage of them. ASP.NET Core offers a simplified hosting model, called minimal ...
When working in applications in ASP.NET Core you might often need to invoke the Web API action methods using HttpClient to check if the endpoints are working fine. To achieve this, you would typically ...
Take advantage of authentication and authorization, API keys, rate limiting, CORS, API versioning, and other recommended practices to build secure and robust APIs in ASP.NET Core. Because our APIs ...
Take advantage of API key authentication to control the access of applications and services to your Web APIs in ASP.NET Core. There are several ways to secure your APIs in ASP.NET Core 7. You can use ...
How to implement logging, read from the configuration system, and use dependency injection in minimal APIs in ASP.NET Core 6. ASP.NET Core 6 introduces a simplified hosting model that can be used to ...
Take advantage of MethodTimer.Fody to measure the execution speed of your APIs and keep your ASP.NET Core applications running smoothly. In today’s fast-paced digital landscape, let’s not kid ...
Take advantage of user secrets management in ASP.NET Core to prevent the sharing of sensitive application data in your projects When working with ASP.NET web applications, you will want to protect ...