I am working with Block Blobs in Azure Storage. I need to get uncommitted blocks, as far as I have found I need to call “Get Block List”. Here is the problem.
Does “Get Block List” functionality exists in C# (Microsoft.WindowsAzure.StorageClient.dll)?
MSDN only says about doing a HTTP request, not a word about StorageClient API.
If this function does not exists in C#, are there any plans to include it to the C# API?
I think what you are looking for is the DownloadBlockList method on CloudBlockBlob
http://msdn.microsoft.com/en-us/library/microsoft.windowsazure.storageclient.cloudblockblob.downloadblocklist.aspx
There’s example code there in MSDN – http://msdn.microsoft.com/en-us/library/ee772860.aspx