/// <summary> /// Creates a new AzureStorageBlobStore using the supplied hub name and cloud storage account /// </summary> /// <param name="hubName">The hub name for this store</param> /// <param name="cloudStorageAccount">Azure Cloud Storage Account</param> public AzureStorageBlobStore(string hubName, CloudStorageAccount cloudStorageAccount) { this.blobClient = new BlobStorageClient(hubName, cloudStorageAccount); }
/// <summary> /// Creates a new AzureStorageBlobStore using the supplied hub name and connection string /// </summary> /// <param name="hubName">The hub name for this store</param> /// <param name="connectionString">Azure storage connection string</param> public AzureStorageBlobStore(string hubName, string connectionString) { this.blobClient = new BlobStorageClient(hubName, connectionString); }