Reputation: 16208
Is there a way to get the (primary) Azure region in which a Blob Storage account is deployed in using the WindowsAzure.Storage .NET SDK (using the latest version 9.1.1)?
If not by using the storage SDK, which other way would there be from .NET? Thanks!
Upvotes: 0
Views: 299
Reputation: 136366
Is there a way to get the (primary) Azure region in which a Blob Storage account is deployed in using the WindowsAzure.Storage .NET SDK (using the latest version 9.1.1)?
Unfortunately no. WindowsAzure.Storage
.NET SDK is for managing data in your Azure Storage accounts.
If not by using the storage SDK, which other way would there be from .NET? Thanks!
You will need to use Azure Management Library for .Net
for this purpose.
Upvotes: 1