May 2013
Intermediate to advanced
226 pages
4h 16m
English
The new asynchronous capabilities of .NET 4.5 rely on the async and await modifiers. Basically we have two important points here:
await operator, which can only be used within an async method, is applied to a task to suspend execution of the method until the task is complete. Meanwhile, the control is returned to the caller of that method.Here we will use the
async and await features in a basic way to clearly understand them.
caAsyncAwait.System.Net.Http assembly.