コード例 #1
0
 public AzureFileSystemFactory(string storageAccount, bool sendQueueNotificationsOnUpload, Dictionary<string,string> accounts)
 {
     this.m_storageAccount = storageAccount;
     this.m_sendQueueNotificationsOnUpload = sendQueueNotificationsOnUpload;
     this.m_accountManager = new AccountManager(accounts);
 }
コード例 #2
0
 public AzureFileSystemFactory()
 {
     m_accountManager = new AccountManager();
     m_accountManager.LoadConfigration();
 }
コード例 #3
0
 public AzureFileSystemFactory(string storageAccount, bool sendQueueNotificationsOnUpload, Func<string, string, bool> checkAccount)
 {
     this.m_storageAccount = storageAccount;
     this.m_sendQueueNotificationsOnUpload = sendQueueNotificationsOnUpload;
     this.m_accountManager = new AccountManager(checkAccount);
 }