Further reading
To learn more about the topics that were covered in this chapter, take a look at the following resources:
- MediatR GitHub Repository, by Jimmy Bogard, available at https://github.com/jbogard/MediatR.
- MediatR Wiki, by Jimmy Bogard, available at https://github.com/jbogard/MediatR/wiki.
- What's New in C#11, available at https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-11.
- Asynchronous Programming, available at https://docs.microsoft.com/en-us/dotnet/csharp/async.
- AJAX Introduction, by W3Schools, available at https://www.w3schools.com/xml/ajax_intro.asp.
- Delegates (C# Programming Guide), by Microsoft, available at https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/delegates/.
- The Task Asynchronous Programming model, available at https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/task-asynchronous-programming-model.
- Parallel.ForEachAsync in .NET 6, by Scott Hanselman, available...