Rajat Srivastavastackup.hashnode.dev·Sep 10, 2024FeaturedCancellation Tokens in .NET : Boosting Performance and ReliabilityIntroduction In the world of web development, responsiveness and efficiency are paramount. .NET Core provides developers with powerful tools to build robust and scalable applications. One such tool is the Cancellation Token, a mechanism that allows f...16 likes·484 readscancellation-token
Ejan Shresthaijanggmu.hashnode.dev·Aug 15, 2024Cancellation Token Concept: A Practical GuideCancellation Token in .NET: A Practical Guide Cancellation tokens are a powerful feature in .NET that allow you to manage and gracefully cancel long-running tasks. Whether you're dealing with API requests, database operations, or any asynchronous pro...264 readsdotnet
Hemant Singhmemorycrypt.hashnode.dev·Sep 15, 2023Async/Await and Cancellation Tokens in C#Asynchronous programming has become an essential part of modern software development, allowing applications to perform tasks concurrently without blocking the main thread. In C#, the async and await keywords simplify asynchronous code, making it more...589 readsC# and .NETasync/await