41,745 reputation
24079
bio website stephencleary.com
location Williamsburg, MI
age 35
visits member for 3 years, 3 months
seen 1 hour ago
stats profile views 1,922

I'm a conservative Christian living in Northern Michigan with my lovely family. The most important thing about me is that I know I'm going to Heaven!

My day job ranges from modern C# (e.g., WPF, LINQ to Entities, etc) to firmware development using C (and ARM assembly if I'm unable to avoid it).

I do some contract work in C++/C#/C, including end-user data-driven programs and a few device drivers. I used to be very good with C++, even contributing to Boost; but these days I prefer C#.

In addition, I'm the "web guy" for my church, which uses Silverlight, jQuery, ASP.NET MVC, and LINQ to Entities (to SQL Server).


5h
comment Why does LogicalCallContext not work with async?
If you're looking for a diagnostic approach, try out my Async Diagnostics library. It uses the LogicalCallContext approach described here along with PostSharp to automatically add a "logical stack" to all exceptions.
5h
revised Why does LogicalCallContext not work with async?
added 182 characters in body
5h
comment Why does LogicalCallContext not work with async?
I had some time to investigate this recently and put the results in a blog post. Which I then forgot to put in this post. :)
9h
comment An entry point cannot be marked with the 'async' modifier
I have a blog post on the subject. You can either install your own context (as I do in my post) or just use Task.Wait (as svick does in his answer).
1d
comment endMethod never called in TaskFactory<T>.FromAsync()
I haven't used OData since the old days. I recommend you copy this additional information into your question, and I'm going to withdraw this answer.
1d
comment endMethod never called in TaskFactory<T>.FromAsync()
Are you using a custom proxy or doing anything weird with the channel?
1d
comment endMethod never called in TaskFactory<T>.FromAsync()
In that situation, it shouldn't cause a deadlock. The deadlock I described only happens if you block on an async method, which you don't have. If you remove the Result and put trace/breakpoint inside a ContinueWith instead, is it ever hit?
1d
comment endMethod never called in TaskFactory<T>.FromAsync()
Did you read the links I posted? I'm not talking about blocking; I'm talking about deadlock.
1d
comment Understanding async/await without threads
Actually, neither of those calls create threads. @Servy is correct in that the await operator (more specifically, the task awaiter used by the code generated by the await operator) is using the default SynchronizationContext to schedule method continuations on thread pool threads.
2d
comment async / await in .NET 4.5 PCL targeting Mono for Android?
Last I heard, Xamarin does not yet (officially) support PCLs (though you may be able to hack something together using Microsoft.Bcl.Async). I've looked into PLC+async support on Xamarin over the last week and have concluded it's simply not mature enough yet. Hopefully soon...
2d
answered endMethod never called in TaskFactory<T>.FromAsync()
2d
comment Understanding async/await without threads
@Matthew You may find my async/await intro helpful. I tried to cover the basics (with all relevant details) in a single post.
2d
answered asp.net(mvc) not consuming any thread while waiting for a chat message using async/await?
2d
comment Async/Await in multi-layer C# applications
I disagree regarding the extra layer of complexity. Maintainability, testability, and code reasoning are straightforward with async/await (once you understand them).
2d
answered Async/Await in multi-layer C# applications
2d
comment Task.WaitAll not waiting on other async methods
Stephen Toub has an excellent blog post about the differences between Task.Run and Task.Factory.StartNew and why you should prefer Task.Run for async tasks.
2d
comment How to compress http request on the fly and without loading compressed buffer in memory
Humm, it may be easiest to just take PushStreamContent and modify it to support async lambdas. It's been on my "todo" list for a few months now, just haven't gotten around to it.
2d
comment Why is code launched on threadpool (via Task.Run) slower than the same code run in BackgroundWorker?
Slightly off-topic, but if your calculations can be run in parallel, it's easy to wrap TPL in an async-compatible task (you just use Task.Run(() => Parallel.Whatever(..));). That way you get the parallel performance ready-to-use in async syntax.
2d
comment Why is code launched on threadpool (via Task.Run) slower than the same code run in BackgroundWorker?
@MichaelRayLovett: Yes, that is what I meant. If you have a single method like Run that by itself is taking minutes, I'd be very surprised to see a 0.1% difference, let alone a 5% difference. There's definitely something going on...
2d
comment How to compress http request on the fly and without loading compressed buffer in memory
PushStreamContent does not (currently) support async lambdas.