C# async/await simplifies asynchronous programming, making code more readable and efficient. Learn how to use async methods, handle exceptions, and follow best practices to improve performance. Master asynchronous execution in .NET and write scalable, responsive applications with ease.
Category: csharp
Correlation ID header, the facts, the truth
Ever heard about the Correlation ID header ? Or even think about a way to aggregate your logs amongst multiple systems ? Here is a right place to get some explanation on what is the Correlation ID and what is it used for. Correlation ID, what is it for and why ? In the past, we were used to think…
C# custom Authorize attribute ! How to implement yours ?
Learn to implement a custom Authorize attribute in C# to secure your REST API controllers and methods. This guide demonstrates inheriting from the AuthorizeAttribute class and overriding the AuthorizeCore method for tailored authentication without using expensive tools.