Downloading a blob asynchronously
The Azure Storage library provides synchronous and asynchronous versions of nearly all the methods that access the Azure Storage service.
The asynchronous methods follow the common language runtime (CLR) Asynchronous Programming Model (APM). In this model, asynchronous methods for an action are defined as a pair named BeginAction and EndAction. The asynchronous operation is initiated through a call to BeginAction and is cleaned up by a call to EndAction. The BeginAction action has a parameter that is a callback delegate, and EndAction must be invoked in this delegate.
This apparent complexity can be greatly simplified through the use of a lambda expression to represent the callback delegate. Furthermore, local variables ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access