The async-await tag has no wiki summary.
0
votes
0answers
45 views
WCF using TAP without worrying about timeouts
I am really liking using the new TAP pattern in .net 4.5. And am updating some of my older projects to use it.
One of the old patterns I used to use was to use EAP with WCF so I could have functions ...
0
votes
1answer
100 views
Asynchronous version of AutoResetEvent
This is my second attempt to create asynchronous version of AutoResetEvent.
At first I tried to make it completely lock-less, but it turned out to be impossible.
This implementation contains a lock ...
4
votes
1answer
179 views
C# 5 Async Await .Task.Factory.StartNew cancellation
I have the async code that implements cancellation token. It's working but Im not pretty sure if this is the right way to do it so I just want feedback about it.
Here is the actual code:
/// ...
2
votes
1answer
93 views
Am I using async C# correctly?
I have the following bit of code the calls out to two different command line components (each wrapped in their own Task)
public async Task<FileInfo> RasterizeAllPdfs(IEnumerable<Uri> ...