C# - How to add request timings to an ASP.Net project
Today I wanted to set up server timings for a project to see how easy it would be. I found out with a few lines you »
Today I wanted to set up server timings for a project to see how easy it would be. I found out with a few lines you »
Asp.net core has built in dependency injection. If you have a standard Asp.net core project you will find the method ConfigureServices in your startup. »
When you wish to use dependency injection in Asp.net core you have three choices for the lifetime scope of your dependency. The three choices are »
In a previous post I showed how you can send XML using the HttpClient in asp.net core, using the following code snippet: var httpClient = new »
My previous post on websockets on how to stream messages to a client has become quite popular. I felt that I left this halfway when I »
If you wish to change the URL that your browser is directed to, when starting your new asp.net project you need to change your launch »
In this post I show you how to use optional parameters in asp.net core. It is actually quite simple as it works just the same »
Once in a while I add a new action to my controller and for some reason it does not work, even though I have a whole »
I finally decided that it was time to give websockets a try. They have been around for over a decade, but I just had not found »
Back in 2017 I started looking into .Net core Because of this I started scouting the web for good resources on .NET core. I am mostly »