public TableOutput TableStorageOutput(string name, StorageAccount storageAccount, string table, string partitionKey, string rowKey)
 {
     return(GetOrAddOutput(storageAccount, () => new TableOutput(name, storageAccount, table, partitionKey, rowKey)));
 }
 public BlobStorageInput BlobStorageInput(string name, StorageAccount storageAccount, string container)
 {
     return(GetOrAddInput(storageAccount, () => new BlobStorageInput(name, storageAccount, container)));
 }
 public BlobStorageInput(string name, StorageAccount storageAccount, string container) : base(name, storageAccount)
 {
     StorageAccount = storageAccount;
     Container      = container;
 }
Beispiel #4
0
 public StorageAccountTableEndpoint(StorageAccount storageAccount) : base(storageAccount)
 {
 }
Beispiel #5
0
 public StorageAccountBlobEndpoint(StorageAccount storageAccount) : base(storageAccount)
 {
 }
Beispiel #6
0
 protected StorageAccountEndpoint(StorageAccount storageAccount)
 {
     _storageAccount = storageAccount;
 }