0
Azure雲服務配置內部的自定義配置部分是否可以使用常規ASP.NET網站中的相同方式?Azure雲服務中的自定義配置部分
即在常規ASP.NET網站你的web.config將有這樣的事情:
<configuration>
<configSections>
<section name="myCustomConfig" type="MyNamespace.MyType" />
</configSections>
<myCustomConfig someProperty="someValue" />
</configuration>
這是如何在雲服務中進行,在多個不同的角色共享?