我想获得Microsoft.WindowsAzure.Storage.Table.CloudTable
对象的实例
从:
我知道如何访问包含accountName
和accountKey
的表:
//I would like to use username + password and then specify which account to access
var storageCredentials = new StorageCredentials(accountName, accountKey);
var storageAccount = new CloudStorageAccount(storageCredentials, useHttps: true);
var tableClient = storageAccount.CreateCloudTableClient();
var table = tableClient.GetTableReference("my_table");
这是一个简单的数据导出应用程序,用户提供用户名和密码。
为了记录,我现在最终使用SAS令牌。