An amber-workshop order form must pull a finished pattern blob from Azure Blob Storage and save the bytes to local disk for a cutter workstation. Which SDK operation should the developer use?
Select an answer to reveal the explanation.
Short Explanation
Download is the forklift that brings the crate off the shelf to your bench. GetProperties only reads the shipping label. A SAS lets a browser fetch later, but the desk app still needs a download (or equivalent GET) to land bytes on disk.
Full Explanation
Blob download APIs (Download / DownloadTo and equivalents) transfer blob content to a stream or file. GetProperties returns headers and metadata without the body. SAS construction authorizes access; SetMetadata updates metadata and does not push content to a client disk.