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...Chang koo Phil and 1 other are discussing this2 people are discussing thisDiscuss·16 likes·476 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...Discuss·261 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...Discuss·573 readsC# and .NETasync/await