Customizing URL Binding For ASP .NET Core Kestrel Server
Kestrel server is the default server that is shipped with .NET. This article explains how the Kestrel server configurations can be modified to change the default bound URLs. What is…
Kestrel server is the default server that is shipped with .NET. This article explains how the Kestrel server configurations can be modified to change the default bound URLs. What is…
.NET core web applications can be executed on different web servers. .NET itself comes with Kestrel server. This article talks about what is kestrel server, what are different ways to…
We have covered many articles now about the generic host. The host is a concept encapsulates the dependency injection, configuration, logging and IHostedService implementations. If you have gone through all…
This article is extension to generic host series. Previous articles were about introduction, interfaces and host configurations. In this article, let's quickly have a look at some settings that can…
The default template for ASP .NET core applications use the generic host. Generally, this is the area which is worked upon at the very beginning of the project and mostly…
This article discusses about what is delayed instantiation and how it can be used with .NET's default IoC container and Autofac. Delayed Instantiation ? The dependency injection in .NET allows…
We know that .NET has its own built-in IoC container. When you create web applications, the project templates include the defautl IoC container so that you can focus on your…
Dependency Injection in .NET: Demo of service lifetimes
The last article was dedicated to getting started on the options pattern for reading configurations in .NET applications. In this article, let's have a look at how the configurations can…
In previous two articles, we have seen how to set the environment variables and how the environment variables play role in config transformations. In this article, let's have a look…
The world of .NET Core is not new to most of us. We have been hearing about it since last few years and many of us already started using it.…