読み取り/書き込み(および保存)プログラム内のアプリケーションの構成ファイル
App.configは次のようになります。
<configuration>
<configSections>
<section name="AdWordsApi" type="System.Configuration.DictionarySectionHandler" requirePermission="false"/>
</configSections>
<AdWordsApi>
<add key="LogPath" value=".\Logs\"/>
...
</AdWordsApi>
</configuration>
ConfigurationManager.GetSectionを使用してapp.configを読み取ると、次のように機能します。
var adwords_section = (System.Collections.Hashtable) System.Configuration.ConfigurationManager.GetSection("AdWordsApi");
Console.WriteLine((string)adwords_section["LogPath"]);
しかし、私が使用する場合ConfigurationManager.OpenExeConfiguration:
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
ConfigurationSection section = config.GetSection("AdWordsApi");
Console.WriteLine(section["LogPath"]);
私はいつもこのエラーを受け取ります:
'System.Configuration.ConfigurationElement.this [System.Configuration.ConfigurationProperty]'は、保護レベルが原因でアクセスできません
しかし、私が知っているように、GetSectionはプログラムの実行時に構成を保存できません。最初に言ったように、プログラムの実行時に構成を保存したいので、OpenExeConfigurationを使用する必要があります。
私は長い間グーグルで検索してきましたが、AppSettingsを使用することがわかりましたが、使用するのはカスタムセクションです。
この「ConfigurationPropertyにアクセスできません」エラーが発生した理由を誰かが説明できますか?ありがとう
編集:
copy local ofSystemandSystem.Configurationからtrue
この記事 を使用できます。
編集:
configを使用できます:
<configSections>
<section name="AdWordsApi.appSettings" type="System.Configuration.AppSettingsSection" />
</configSections>
<AdWordsApi.appSettings>
<add key="LogPath" value=".\Logs\"/>
</AdWordsApi.appSettings>
このコード:
var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
var settings = config.GetSection("AdWordsApi.appSettings") as AppSettingsSection;
if (settings != null) Console.Write(settings.Settings["LogPath"].Value);
Console.ReadLine();
また、 この記事 を使用することもできます。
string key_value = refconfig.AppSettings.Settings["key_name"].Value;
実行しようとしていることで機能するかどうかはわかりませんが、代わりにConfigurationUserLevel.Noneを使用してみましたか?