gpt4 book ai didi

C# - 如何确定映射的 EXE 配置文件中是否存在配置节?

转载 作者:太空宇宙 更新时间:2023-11-03 12:02:11 26 4
gpt4 key购买 nike

我有一个 C# 项目,它正在从一个名为 test.config 的独立配置文件中读取数据。这是一个与典型的 App.config 不同的独立文件。

我正在尝试确定 test.config 文件是否包含来自代码的可选属性 TestProperty。我尝试使用 TestProperty.ElementInformation.IsPresent 但这总是导致 FLASE 值,即使 section 元素实际存在也是如此。

class Program
{
static void Main(string[] args)
{
string filePath = @"C:\Users\username\Desktop\TestProject\ConfigTestApp\Test.Config";
ExeConfigurationFileMap fileMap = new ExeConfigurationFileMap(filePath);
fileMap.ExeConfigFilename = Path.GetFileName(filePath);

Configuration config = ConfigurationManager.OpenMappedExeConfiguration(fileMap, ConfigurationUserLevel.None);
TestConfigSection section = config.GetSection("TestConfigSection") as TestConfigSection;
bool isPresent = section.TestProperty.ElementInformation.IsPresent; // Why is this always false?
}
}

test.config 文件如下所示:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name ="TestConfigSection" type ="ConfigTestApp.TestConfigSection, ConfigTestApp"/>
</configSections>

<TestConfigSection>
<TestProperty testvalue="testing 123" />
</TestConfigSection>
</configuration>

支持类是:

public class TestConfigSection : ConfigurationSection
{
[ConfigurationProperty("TestProperty", IsRequired = true)]
public TestConfigElement TestProperty
{
get
{
return base["TestProperty"] as TestConfigElement;
}
}
}

public class TestConfigElement : ConfigurationElement
{
[ConfigurationProperty("testvalue", IsKey = true, IsRequired = true)]
public string TestValue
{
get { return base["testvalue"] as string; }
set { base["testvalue"] = value; }
}
}

如果我将该部分移动到 App.config 并使用 ConfigurationManager.GetSection("TestConfigSection"),IsPresent 似乎工作正常,但我需要它在单独的文件 (test.config ).

有什么方法可以使 TestProperty.ElementInformation 正常工作,或者有什么其他方法可以确定 test.config 文件是否包含 TestProperty 属性?

最佳答案

也许这是你的问题:

ExeConfigurationFileMap fileMap = new ExeConfigurationFileMap(filePath);
fileMap.ExeConfigFilename = Path.GetFileName(filePath);

ExeConfigFilename 不应该是这样的文件的完整路径吗?

fileMap.ExeConfigFilename = filePath;

如果那不是问题,我最近不得不像您一样做一些事情,这就是我所做的(使用您的示例数据)。

string filePath = @"C:\Users\username\Desktop\TestProject\ConfigTestApp\Test.Config";
ExeConfigurationFileMap fileMap = new ExeConfigurationFileMap { ExeConfigFilename = filePath };
config = ConfigurationManager.OpenMappedExeConfiguration(fileMap, ConfigurationUserLevel.None);
AppSettingsSection section = (AppSettingsSection) config.GetSection("TestConfigSection");

if ( section != null )
{
string testValue = section .Settings["TestProperty"].Value;
}

在我的配置文件中,我使用了这种格式:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<TestConfigSection file="">
<clear />
<add key="TestProperty" value="testing 123" />
</TestConfigSection>
</configuration>

关于C# - 如何确定映射的 EXE 配置文件中是否存在配置节?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56586373/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com