コード例 #1
0
        public BlobHelper(AzureBlobCofig config)
        {
            if (null == config || string.IsNullOrEmpty(config.StorageAccount) || string.IsNullOrEmpty(config.ContainerName))
                throw new ArgumentNullException("Missing database connection settings.  Check app.config file.");

            _config = config;
        }
コード例 #2
0
        public BlobHelper(AzureBlobCofig config)
        {
            if (null == config || string.IsNullOrEmpty(config.StorageAccount) || string.IsNullOrEmpty(config.ContainerName))
            {
                throw new ArgumentNullException("Missing database connection settings.  Check app.config file.");
            }

            _config = config;
        }
コード例 #3
0
 public AzureBlobPOutput(AzureBlobCofig config)
 {
     _helper = new BlobHelper(config);
 }