
How to use Environment Variables in ASP.NET Core
In this article, I want to detail on the use of Environmental Variables and different ways of accessing them in an ASP.NET Core application
In this article, I want to detail on the use of Environmental Variables and different ways of accessing them in an ASP.NET Core application
To create a strongly-typed class for binding to a configuration section:
A Configuration section can be bound to a strictly-typed class object in two ways:
IOptionsMonitor is a part of the IOptions provided in ASP.NET Core. It returns the "CurrentValue" and notifications when options change.
Named options are when a single class is to be used for creating different objects of configurations that have the same structure.
The below are the differences between IOptions and IOptionsSnapshot explained respectively. Both are provided as part of the IOptions framework in ASP.NET Core
In this detailed article let us learn about what is AWS Lambda Layers and How to deploy our ASP.NET Core application in a Lambda Layer
In this article, let's talk about another such simple Flow - which can be used for user authentication. It is called as the Resource Owner Password Credentials Grant (ROPC) flow.
In this article, let's look at how to configure and implement Client Credentials grant with IdentityServer4 and validate with example.