Category: Programming

The Object That Remains

I kept meeting the same idea in different uniforms. COM lets clients ask an object for an interface. Game-object models let code ask for a component. Property systems reveal attributes that the base class has never heard of. The...

CancellationToken Best Practices in ASP.NET Core

One of the strengths of ASP.NET Core is how naturally it supports cooperative cancellation. When a client disconnects, refreshes the page, closes the browser tab, or a request timeout is triggered, ASP.NET Core exposes that signal through HttpContext.RequestAborted. You...