Category Archives: Technical Journal
Simple global exception logger for asp.net core
Memory leak within WCF?
Memory leak within WCF? So yesterday my team had to trace a possible memory issue within our application. We used the built in memory tools within Visual Studio and identified that the ‘leak’ was within our WCF infrastructure. What was strange was that the problem came from the System.ServiceModel.Channels.BufferManager which is native .net code… So how… Read More »
Bug in RemoveServerHeader attribute for IIS 10+
Reading a JSON configuration file in .Net Core
Visual Studio: Sort the usings so that System stays at the top
Visual Studio: Show the open file in the solution explorer.
HttpModule basics
The a HTTP module is used when you need to intercept and examine the incoming HTTP requests before or after the page life cycle. The HTTPModule provides events where you can plug into to examine or alter the request or response within the asp.net cycle. HTTPModule are the perfect place the apply security checks.