コード例 #1
0
        public TableStore(IOptions <StoreOption> options)
        {
            this.options = options.Value;
            var cloudStorageAccount = CloudStorageAccount.Parse(this.options.ConnectionString);

            this.tableClient = cloudStorageAccount.CreateCloudTableClient();
        }
コード例 #2
0
ファイル: ImageService.cs プロジェクト: hempe/vabulu
 public ImageService(IOptions <StoreOption> storageOptions)
 {
     this.storageOptions = storageOptions.Value;
 }