CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
WorkInProgress.cs
Go to the documentation of this file.
1using System.Collections.Concurrent;
2
4{
5 internal static class Wip
6 {
7 public static readonly ConcurrentDictionary<string, WipItem> WorkInProgress =
8 new ConcurrentDictionary<string, WipItem>();
9 }
10
11 internal class WipItem
12 {
13 public Csla.Threading.AsyncManualResetEvent ResetEvent { get; set; }
14 public byte[] Response { get; set; }
15 }
16}
Async/await implementation of a ManualResetEvent