Reverting client/server communication around our pipes to fix access denied err.
Now simply opening files for pipes created by SoundGraphAccess server.
2 using System.Collections.Generic;
4 using System.Threading;
6 namespace Aga.Controls.Threading
8 public sealed class WorkItem
10 private WaitCallback _callback;
11 private object _state;
12 private ExecutionContext _ctx;
14 internal WorkItem(WaitCallback wc, object state, ExecutionContext ctx)
21 internal WaitCallback Callback
37 internal ExecutionContext Context