我正在将 azure 表存储用于我们的 webhook 发件人服务之一。
为此,必须在 web.config 文件中设置 MS_AzureStoreConnectionString。
现在我需要从密钥库中获取上述值,这只能通过自定义实现来完成。
我在 web.config 中删除了“MS_AzureStoreConnectionString”键。
而且我试图在我的启动类中将天蓝色表存储连接字符串注入到默认的 Web 挂钩实现中,如下所示。
SettingsDictionary settings = new SettingsDictionary();
string connectionString = helper.getTableSrorageConnectionString();
ConnectionSettings connection = new ConnectionSettings("MS_AzureStoreConnectionString", connectionString);
settings.Connections.Add("MS_AzureStoreConnectionString", connection);
但是我在运行我的APP时遇到了以下问题。
请在“Web.Config”文件的配置字符串部分提供名为“MS_AzureStoreConnectionString”的 Microsoft Azure 存储连接字符串。
我不想在 web.config / app 设置中保留连接字符串。
如何将连接字符串注入默认的 Web 挂钩实现?
请就此提出可能的解决方案。