Ejemplo n.º 1
0
 /// <summary>
 /// Initialize a azure storage
 /// </summary>
 /// <param name="authentication">AzureAuthentication object</param>
 public AzureStorage(AzureAuthentication authentication)
 {
     this._authentication = authentication;
     InitializeAzureConnection();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initialize a azure storage
 /// </summary>
 /// <param name="accountName">Account name of your storage</param>
 /// <param name="containerName">Container name of your storage</param>
 /// <param name="keyValue">Key of your storage</param>
 public AzureStorage(string accountName, string containerName, string keyValue)
 {
     this._authentication = new AzureAuthentication(accountName, containerName, keyValue);
     InitializeAzureConnection();
 }