You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are versions of Windows.Azure.Storage that do not implement the "CreateIfNotExists" function syncronously, they only use the "CreateIfNotExistsAsync" method.
AzureDirectory.cs should have:
public void CreateContainer()
{
_blobContainer = _blobClient.GetContainerReference(_containerName);
_blobContainer.CreateIfNotExistsAsync().Wait();
}
The text was updated successfully, but these errors were encountered:
There are versions of Windows.Azure.Storage that do not implement the "CreateIfNotExists" function syncronously, they only use the "CreateIfNotExistsAsync" method.
AzureDirectory.cs should have:
The text was updated successfully, but these errors were encountered: