0

通常の ASP.NET Web サイトと同じように、Azure Cloud Service 構成内にカスタム構成セクションを作成することはできますか?

つまり、通常の ASP.NET サイトでは、Web.Config は次のようになります。

<configuration>
  <configSections>
     <section name="myCustomConfig" type="MyNamespace.MyType" />
  </configSections>
  <myCustomConfig someProperty="someValue" />
</configuration>

これはクラウド サービスでどのように行われ、複数の異なる役割で共有されますか?

4

1 に答える 1