About 420,000 results
Open links in new tab
  1. ASP.NET Core Blazor synchronization context | Microsoft Learn

    Nov 12, 2025 · Learn about Blazor's synchronization context, how to avoid thread-blocking calls, and how to invoke component methods externally.

  2. How to periodically synchronize data in the background

    Jan 23, 2026 · The modern way Periodic background sync lets you show fresh content when a progressive web app or service worker-backed page is launched. It does this by downloading data in …

  3. Difference between Synchronization Context and Dispatcher

    SynchronizationContext.Current.Post(myAction,null); What is the difference between them and why SynchronizationContext should be used?.

  4. Exploring the async/await State Machine – Synchronization ...

    Mar 1, 2021 · The Synchronization Context is an abstraction that lets you run a piece of code asynchronously without thinking about the specifics of the current environment. How does it work, …

  5. Background Synchronization API - Web APIs | MDN

    Apr 22, 2024 · The Background Synchronization API enables a web app to defer tasks so that they can be run in a service worker once the user has a stable network connection.

  6. Understanding Thread Synchronization in Concurrent Programming

    Thread synchronization in C# ensures safe, correct access to shared resources in concurrent programming, preventing race conditions, data corruption, deadlocks, and livelocks through various …

  7. Overview of synchronization primitives - .NET | Microsoft Learn

    Sep 1, 2022 · Learn about .NET thread synchronization primitives used to synchronize access to a shared resource or control thread interaction

  8. SynchronizationContext Class (System.Threading) | Microsoft Learn

    Provides the basic functionality for propagating a synchronization context in various synchronization models.

  9. Web Periodic Background Synchronization API - Web APIs | MDN

    Sep 8, 2025 · The Web Periodic Background Synchronization API provides a way to register tasks to be run in a service worker at periodic intervals with network connectivity. These tasks are referred to as …

  10. What Is SynchronizationContext and Its Role In Asynchronous ...

    Jun 24, 2018 · This post explain what SynchronizationContext is and what it can do for us. We also see where capturing the current context is necessary and why.