【发布时间】:2013-08-18 09:27:42
【问题描述】:
是否可以像在常规 ASP.NET 网站中一样在 Azure 云服务配置中自定义配置部分?
即在常规 ASP.NET 站点中,您的 Web.Config 将具有以下内容:
<configuration>
<configSections>
<section name="myCustomConfig" type="MyNamespace.MyType" />
</configSections>
<myCustomConfig someProperty="someValue" />
</configuration>
这是如何在云服务中完成并在多个不同角色之间共享的?
【问题讨论】:
标签: iis azure web-config azure-web-roles custom-configuration