是否可以像在常规 ASP.NET 网站中一样在 Azure 云服务配置中创建自定义配置部分?
即在常规 ASP.NET 站点中,您的 Web.Config 将具有以下内容:
<configuration>
<configSections>
<section name="myCustomConfig" type="MyNamespace.MyType" />
</configSections>
<myCustomConfig someProperty="someValue" />
</configuration>
这如何在云服务中完成并在多个不同角色之间共享?