In looking at various C# Async CTP samples I see some async functions that return void, and others that return the non-generic Task. I can see why returning a Task<MyType> is useful to return data to the caller when the async operation completes, but the functions that I've seen that have a return type of Task never return any data. Why not return void?
|
|
||||
|
|
|
SLaks and Killercam's answers are good; I thought I'd just add a bit more context. Your first question is essentially about what methods can be marked
A A A Your second question, in a comment, is essentially about what can be
No, a void-returning method cannot be awaited. The compiler translates
|
|||||||||||||||||||
|
|
In case the caller wants to wait on the task or add a continuation. In fact, the only reason to return |
|||||
|
|
EDIT: I should cite Eric Lippert's article in October 2011 MSDN Magazine as this is how I learnt about these new features of .NET! Type Precisely how the result of type Based on your comment above: The For loads more infromation and whitepages see here. I hope this is of some help. |
||||
|
|
|
Methods returning
The second point is important when you're dealing with a context that maintains a count of outstanding asynchronous operations. The ASP.NET context is one such context; if you use async Another context is the |
|||
|
|
|
You can await using a Task.Factory....lambda and await it. The return type does not matter. |
|||||
|