| bio | website | stephencleary.com |
|---|---|---|
| location | Williamsburg, MI | |
| age | 35 | |
| visits | member for | 3 years, 3 months |
| seen | 13 mins ago | |
| stats | profile views | 1,931 |
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).
|
8h |
answered | Call back to main thread from a Task |
|
18h |
answered | Async WCF Service |
|
19h |
answered | Is it possible for the compiler to create async code that would have a StackOverflowException? |
|
23h |
comment |
Task<T>.Result and string concatenation The behavior can still happen when broken into two statements. It's just less likely. See Reed's answer. |
|
1d |
answered | MVC3/Azure - What's the most scalable way to handle 50k+/second quick API calls? |
|
1d |
answered | C# Asynchronous HTTPWebRequest on Windows Phone |
|
2d |
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. |
|
2d |
revised |
Why does LogicalCallContext not work with async? added 182 characters in body |
|
2d |
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. :) |
|
2d |
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). |
|
May 22 |
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. |
|
May 22 |
comment |
endMethod never called in TaskFactory<T>.FromAsync() Are you using a custom proxy or doing anything weird with the channel? |
|
May 22 |
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? |
|
May 22 |
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. |
|
May 21 |
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. |
|
May 21 |
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... |
|
May 21 |
answered | endMethod never called in TaskFactory<T>.FromAsync() |
|
May 21 |
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. |
|
May 21 |
answered | asp.net(mvc) not consuming any thread while waiting for a chat message using async/await? |
|
May 21 |
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). |