天蓝色功能中的自定义配置部分?

时间:2016-08-05 18:47:37

标签: azure-functions

我们正在使用Recurly的.Net api客户端,它需要一个如下所示的自定义配置部分。 azure功能是否支持此功能?

<configsections>
<section name="recurly" type="Recurly.Configuration.Section,Recurly"/>
</configsections>

<recurly apikey="xxxxxx" subdomain="test"/>

2 个答案:

答案 0 :(得分:2)

不幸的是,Azure Functions目前不支持自定义配置部分。

答案 1 :(得分:1)

您无法以这种方式继续配置Azure功能。所有配置均由appsettings.json或Application Settings Blade o Azure Portal。

完成

但是,你能够找到一些有趣的配置 here

相关问题