私はC#、Framework 3.5(VS 2008)を使用しています。
ConfigurationManager
を使用して、構成(既定のapp.configファイルではない)を構成オブジェクトに読み込みます。
Configurationクラスを使用して、ConfigurationSection
を取得できましたが、そのセクションの値を取得する方法を見つけることができませんでした。
構成では、ConfigurationSection
のタイプはSystem.Configuration.NameValueSectionHandler
。
GetSection
のConfigurationManager
メソッド(デフォルトのapp.configファイル上にある場合にのみ機能します)を使用すると、価値のあるものにオブジェクトタイプを受け取りました。 Key-Valueのペアのコレクションで、辞書のような値を受け取りました。しかし、ConfigurationクラスからConfigurationSection
クラスを受け取ったときには、そのようなキャストを行うことができませんでした。
編集:設定ファイルの例:
<configuration>
<configSections>
<section name="MyParams"
type="System.Configuration.NameValueSectionHandler" />
</configSections>
<MyParams>
<add key="FirstParam" value="One"/>
<add key="SecondParam" value="Two"/>
</MyParams>
</configuration>
App.configにあるときに使用できた方法の例(「GetSection」メソッドはデフォルトのapp.config専用です):
NameValueCollection myParamsCollection =
(NameValueCollection)ConfigurationManager.GetSection("MyParams");
Console.WriteLine(myParamsCollection["FirstParam"]);
Console.WriteLine(myParamsCollection["SecondParam"]);
正確な問題に苦しんでいます。問題は、.configファイルのNameValueSectionHandlerが原因でした。代わりにAppSettingsSectionを使用する必要があります。
<configuration>
<configSections>
<section name="DEV" type="System.Configuration.AppSettingsSection" />
<section name="TEST" type="System.Configuration.AppSettingsSection" />
</configSections>
<TEST>
<add key="key" value="value1" />
</TEST>
<DEV>
<add key="key" value="value2" />
</DEV>
</configuration>
その後、C#コードで:
AppSettingsSection section = (AppSettingsSection)ConfigurationManager.GetSection("TEST");
btw NameValueSectionHandlerは2.0ではもうサポートされていません。
ここにあります 方法を示す良い投稿です。
App.config以外のファイルから値を読み取る場合は、ConfigurationManagerに値を読み込む必要があります。
このメソッドを試してください: ConfigurationManager.OpenMappedExeConfiguration()
MSDNの記事には、その使用方法の例があります。
AppSettingsSection
の代わりにNameValueCollection
を使用してみてください。このようなもの:
var section = (AppSettingsSection)config.GetSection(sectionName);
string results = section.Settings[key].Value;
これを機能させる唯一の方法は、セクションハンドラータイプを手動でインスタンス化し、生のXMLを渡して、結果のオブジェクトをキャストすることです。
かなり効率が悪いようですが、そこに行きます。
これをカプセル化する拡張メソッドを作成しました。
public static class ConfigurationSectionExtensions
{
public static T GetAs<T>(this ConfigurationSection section)
{
var sectionInformation = section.SectionInformation;
var sectionHandlerType = Type.GetType(sectionInformation.Type);
if (sectionHandlerType == null)
{
throw new InvalidOperationException(string.Format("Unable to find section handler type '{0}'.", sectionInformation.Type));
}
IConfigurationSectionHandler sectionHandler;
try
{
sectionHandler = (IConfigurationSectionHandler)Activator.CreateInstance(sectionHandlerType);
}
catch (InvalidCastException ex)
{
throw new InvalidOperationException(string.Format("Section handler type '{0}' does not implement IConfigurationSectionHandler.", sectionInformation.Type), ex);
}
var rawXml = sectionInformation.GetRawXml();
if (rawXml == null)
{
return default(T);
}
var xmlDocument = new XmlDocument();
xmlDocument.LoadXml(rawXml);
return (T)sectionHandler.Create(null, null, xmlDocument.DocumentElement);
}
}
あなたの例でそれを呼び出す方法は次のとおりです。
var map = new ExeConfigurationFileMap
{
ExeConfigFilename = @"c:\\foo.config"
};
var configuration = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
var myParamsSection = configuration.GetSection("MyParams");
var myParamsCollection = myParamsSection.GetAs<NameValueCollection>();
これは古い質問ですが、次のクラスを使用して仕事をしています。 Scott Dormanのブログ に基づいています:
public class NameValueCollectionConfigurationSection : ConfigurationSection
{
private const string COLLECTION_PROP_NAME = "";
public IEnumerable<KeyValuePair<string, string>> GetNameValueItems()
{
foreach ( string key in this.ConfigurationCollection.AllKeys )
{
NameValueConfigurationElement confElement = this.ConfigurationCollection[key];
yield return new KeyValuePair<string, string>
(confElement.Name, confElement.Value);
}
}
[ConfigurationProperty(COLLECTION_PROP_NAME, IsDefaultCollection = true)]
protected NameValueConfigurationCollection ConfCollection
{
get
{
return (NameValueConfigurationCollection) base[COLLECTION_PROP_NAME];
}
}
使い方は簡単です:
Configuration configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
NameValueCollectionConfigurationSection config =
(NameValueCollectionConfigurationSection) configuration.GetSection("MyParams");
NameValueCollection myParamsCollection = new NameValueCollection();
config.GetNameValueItems().ToList().ForEach(kvp => myParamsCollection.Add(kvp));
前述の this blog の例を次に示します。
<configuration>
<Database>
<add key="ConnectionString" value="data source=.;initial catalog=NorthWind;integrated security=SSPI"/>
</Database>
</configuration>
値を取得:
NameValueCollection db = (NameValueCollection)ConfigurationSettings.GetConfig("Database");
labelConnection2.Text = db["ConnectionString"];
-
もう一つの例:
<Locations
ImportDirectory="C:\Import\Inbox"
ProcessedDirectory ="C:\Import\Processed"
RejectedDirectory ="C:\Import\Rejected"
/>
値を取得:
Hashtable loc = (Hashtable)ConfigurationSettings.GetConfig("Locations");
labelImport2.Text = loc["ImportDirectory"].ToString();
labelProcessed2.Text = loc["ProcessedDirectory"].ToString();