Course Asynchronous Programming in C#
Startdata en plaatsen
placeAmsterdam 24 apr. 2025 tot 25 apr. 2025Toon rooster event 24 april 2025, 09:30-16:30, Amsterdam, Dag 1 event 25 april 2025, 09:30-16:30, Amsterdam, Dag 2 |
placeEindhoven 24 apr. 2025 tot 25 apr. 2025Toon rooster event 24 april 2025, 09:30-16:30, Eindhoven, Dag 1 event 25 april 2025, 09:30-16:30, Eindhoven, Dag 2 |
placeHouten 24 apr. 2025 tot 25 apr. 2025Toon rooster event 24 april 2025, 09:30-16:30, Houten, Dag 1 event 25 april 2025, 09:30-16:30, Houten, Dag 2 |
computer Online: Online 24 apr. 2025 tot 25 apr. 2025Toon rooster event 24 april 2025, 09:30-16:30, Online, Dag 1 event 25 april 2025, 09:30-16:30, Online, Dag 2 |
placeRotterdam 24 apr. 2025 tot 25 apr. 2025Toon rooster event 24 april 2025, 09:30-16:30, Rotterdam, Dag 1 event 25 april 2025, 09:30-16:30, Rotterdam, Dag 2 |
placeZwolle 24 apr. 2025 tot 25 apr. 2025Toon rooster event 24 april 2025, 09:30-16:30, Zwolle, Dag 1 event 25 april 2025, 09:30-16:30, Zwolle, Dag 2 |
placeAmsterdam 12 jun. 2025 tot 13 jun. 2025Toon rooster event 12 juni 2025, 09:30-16:30, Amsterdam, Dag 1 event 13 juni 2025, 09:30-16:30, Amsterdam, Dag 2 |
placeEindhoven 12 jun. 2025 tot 13 jun. 2025Toon rooster event 12 juni 2025, 09:30-16:30, Eindhoven, Dag 1 event 13 juni 2025, 09:30-16:30, Eindhoven, Dag 2 |
placeHouten 12 jun. 2025 tot 13 jun. 2025Toon rooster event 12 juni 2025, 09:30-16:30, Houten, Dag 1 event 13 juni 2025, 09:30-16:30, Houten, Dag 2 |
computer Online: Online 12 jun. 2025 tot 13 jun. 2025Toon rooster event 12 juni 2025, 09:30-16:30, Online, Dag 1 event 13 juni 2025, 09:30-16:30, Online, Dag 2 |
placeRotterdam 12 jun. 2025 tot 13 jun. 2025Toon rooster event 12 juni 2025, 09:30-16:30, Rotterdam, Dag 1 event 13 juni 2025, 09:30-16:30, Rotterdam, Dag 2 |
placeZwolle 12 jun. 2025 tot 13 jun. 2025Toon rooster event 12 juni 2025, 09:30-16:30, Zwolle, Dag 1 event 13 juni 2025, 09:30-16:30, Zwolle, Dag 2 |
placeAmsterdam 14 aug. 2025 tot 15 aug. 2025Toon rooster event 14 augustus 2025, 09:30-16:30, Amsterdam, Dag 1 event 15 augustus 2025, 09:30-16:30, Amsterdam, Dag 2 |
placeEindhoven 14 aug. 2025 tot 15 aug. 2025Toon rooster event 14 augustus 2025, 09:30-16:30, Eindhoven, Dag 1 event 15 augustus 2025, 09:30-16:30, Eindhoven, Dag 2 |
placeHouten 14 aug. 2025 tot 15 aug. 2025Toon rooster event 14 augustus 2025, 09:30-16:30, Houten, Dag 1 event 15 augustus 2025, 09:30-16:30, Houten, Dag 2 |
computer Online: Online 14 aug. 2025 tot 15 aug. 2025Toon rooster event 14 augustus 2025, 09:30-16:30, Online, Dag 1 event 15 augustus 2025, 09:30-16:30, Online, Dag 2 |
placeRotterdam 14 aug. 2025 tot 15 aug. 2025Toon rooster event 14 augustus 2025, 09:30-16:30, Rotterdam, Dag 1 event 15 augustus 2025, 09:30-16:30, Rotterdam, Dag 2 |
placeZwolle 14 aug. 2025 tot 15 aug. 2025Toon rooster event 14 augustus 2025, 09:30-16:30, Zwolle, Dag 1 event 15 augustus 2025, 09:30-16:30, Zwolle, Dag 2 |
placeAmsterdam 16 okt. 2025 tot 17 okt. 2025Toon rooster event 16 oktober 2025, 09:30-16:30, Amsterdam, Dag 1 event 17 oktober 2025, 09:30-16:30, Amsterdam, Dag 2 |
placeEindhoven 16 okt. 2025 tot 17 okt. 2025Toon rooster event 16 oktober 2025, 09:30-16:30, Eindhoven, Dag 1 event 17 oktober 2025, 09:30-16:30, Eindhoven, Dag 2 |
Beschrijving
The course Asynchronous Programming in C# focuses on how to use C# and the .Intro Asynchronous Programming
The course Asynchronous Programming in C# starts with a discussion of the differences between synchronous and asynchronous code. Covered are the disadvantages of blocking behavior and the advantages of parallelism and concurrency with threads and tasks.
Synchronous versus Asynchronous
It is explained how in synchronous code a thread that issues a blocking call waits for the result. Asynchronous code does not wait while another thread executes the call. The original thread is notified via a callback or other mechanism when the result is ready.
Async Programming in .NET
Next the implemen…

Veelgestelde vragen
Er zijn nog geen veelgestelde vragen over dit product. Als je een vraag hebt, neem dan contact op met onze klantenservice.
Intro Asynchronous Programming
The course Asynchronous Programming in C# starts with a discussion of the differences between synchronous and asynchronous code. Covered are the disadvantages of blocking behavior and the advantages of parallelism and concurrency with threads and tasks.
Synchronous versus Asynchronous
It is explained how in synchronous code a thread that issues a blocking call waits for the result. Asynchronous code does not wait while another thread executes the call. The original thread is notified via a callback or other mechanism when the result is ready.
Async Programming in .NET
Next the implementation of asynchronous code in the .NET Framework and .NET Core is treated. Various patterns for writing asynchronous code are discussed. The benefits of using .NET Core are covered and asynchronous algorithms are explained.
Async Await
Then the async await mechanism is discussed. It is explained how a method preceded by the async keyword becomes an asynchronous method. In the body of the method the keyword await can then be used to wait for the result of an asynchronous call.
Synchronization
The prevention of data corruption by means of synchronization primitives such as locks, mutexes and semaphores is also on the program of the course Asynchronous Programming in C#. Attention is paid to race conditions and deadlock as well.
Exception Handling
Furthermore exception handling in an asynchronous environment is a topic of the course. The focus is set on faulted tasks and disposable objects. Finally asynchronous calls to services are discussed and the interaction between handling in the frontend and the backend.
Audience Course Asynchronous Programming in C#
The course Asynchronous Programming in C# course is designed for developers who want to learn how to implement asynchronous code with async await in .NET.
Prerequisites Course Asynchronous Programming in C#
Good knowledge of C# or a comparable language such as Java is required to participate in this course.
Realization Training Asynchronous Programming in C#
The concepts are explained using presentations and demos in Visual Studio.NET. There is ample opportunity to practice. The course times are from 9.30 to 16.30.
Certification Course Asynchronous Programming in C#
After successfully completing the course the participants will receive a certificate Asynchronous Programming in C#.
Modules
Module 1 : Async Intro
- Synchronous Code
- Blocking Behavior
- Asynchronous Code
- Callbacks
- Completion Events
- Threads and Tasks
- Parallelism and Concurrency
- IO Bound Tasks
- CPU Bound Tasks
- Long Running Tasks
- Background Workers
Module 2 : Async in .NET
- Async in .NET
- IAsyncResult
- Asynchronous Patterns
- Event Based Pattern
- Task Based Pattern
- Async .NET Core
- .NET Core Benefits
- Asynchronous Algorithms
- Thread Pools
- Thread Pool Starvation
- Memory Consumption
Module 3 : Async Await
- Async Keyword
- Async Method
- Await Keyword
- Suspending Execution
- Yielding Control
- Awaitable Tasks
- ConfigureAwait
- GetAwaiter
- Task Completion
- Task Composition
- Task Object
Module 4 : Synchronization
- Race Conditions
- Deadlock
- Need for Synchronization
- Thread Safe Code
- Lock Objects
- Mutexes
- Semaphores
- Timing and Synchronization
Module 5 : Exceptions
- Exception Handling
- Asynchronous Exceptions
- Throwing Exceptions
- Task.Exception Property
- Faulted Tasks
- Catching Exceptions
- Disposable Objects
- AggregateException
Module 6 : Advanced Topics
- Async Services
- Async Request
- Ajax Calls
- Async Frontend
- Async Backend
- Await Tasks Efficiently
- WhenAll
- WhenAny
Waarom SpiralTrain
SpiralTrain is specialist op het gebied van software development trainingen. Wie bieden zowel trainingen aan voor beginnende programmeurs die zich de basis van talen en tools eigen willen maken als ook trainingen voor ervaren software professionals die zich willen bekwamen in de nieuwste versie van een taal of een framework.
Onze trainingkenmerken zich door :
• Klassikale of online open roostertrainingen en andere
trainingsvormen
• Eenduidige en scherpe cursusprijzen, zonder extra kosten
• Veel trainingen met een doorlopende case study
• Trainingen die gericht zijn op certificering
Blijf op de hoogte van nieuwe ervaringen
Deel je ervaring
Heb je ervaring met deze cursus? Deel je ervaring en help anderen kiezen. Als dank voor de moeite doneert Springest € 1,- aan Stichting Edukans.Er zijn nog geen veelgestelde vragen over dit product. Als je een vraag hebt, neem dan contact op met onze klantenservice.