Windowsサービスをテストするために必要なデスクトップアプリケーションがあります。設定を取得する
アプリケーションは、ビジネスを処理するWindowsサービスクラスを呼び出します。まず、app.configからデータをロードする必要があります。
appの設定はseviceプロジェクト内にあり、カスタムセクション[ABCConfigurationSection]に自分のconfugrationを保存します。 のように...
<ABCConfigurationSection>
<ConnectSettings>
<clear />
<add key="HostIp" value="10.0.X.X"/>
</ConnectSettings>
</ABCConfigurationSection>
メイン設定]セクションのような..です
<configuration>
<configSections>
<section name="ABCConfigurationSection" type="ABCConfiguration, App.Core" />
</configSections>
</configuration>
私がnullだセクション名として、私は "ABCConfigurationSection" を渡し、構成セクションをretrive! アプリ設定の構造に何かがないかどうかについての考え方
コードを表示することはできますか? –
セクション= System.Configuration.ConfigurationManager.GetSection( "ABCConfigurationSection")as App.Core.ABCConfiguration; – AshOoO