This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
In this comprehensive guide, we will discuss the implementation of a straightforward ETag for caching unaltered resources within an ASP.NET Core Web API (using .NET 6).
How to Role based Authorization in ASP.NET Core
Let's see how we can authorize an API access based on an user role defined by the system or a user based on a claim based on the JWT token passed within the request.
How to use Policy based Authorization in ASP.NET Core
In this article, let's understand how to create a custom Authorization Policy and use it with an example in ASP.NET Core Web API
How to Cookie Authentication in ASP.NET Core MVC
In this article, let's look at how we can setup cookie based authentication in an ASP.NET Core MVC application without using Identity for user management.
How to send custom 401 Response in ASP.NET Core
In this detailed article, let's find out how we can send custom Unauthorized responses to users and explore 3 ways to do it
How to bind Configuration in ASP.NET Core
In this article, let's discuss about how we can create and manually bind a custom Configuration type in ASP.NET Core without IOptions, with an example.
How to serve Static Files with ASP.NET Core
In this article, let's look at how we can have these static files properly maintained and efficiently served for various purposes.
All You Need To Know About ASP.NET Core Host
In this article, let's deep dive into how an ASP.NET Core application starts and what all happens when the host is building
What are Service Lifetimes in ASP.NET Core DI
In this article, let's talk in depth about the different services in ASP.NET Core DI based on the lifetimes and everything about them.