gpt4 book ai didi

c# - Settings.Default. 始终返回默认值而不是持久存储(XML 文件)中的值

转载 作者:可可西里 更新时间:2023-11-01 09:06:58 32 4
gpt4 key购买 nike

我最近用 C# (.Net 2.0) 编写了一个 DLL,其中包含一个需要 IP 地址的类。我的一位同事更改了类以从“.dll.config”(XML) 文件中检索 IP——这显然是由他创建的“应用程序设置”文件 (Settings1.settings) 自动生成的。这样做的好处是允许最终用户随意更改 XML/config 文件中的 IP 地址。

不幸的是,当我从树中 check out 他的代码并尝试编译(或使用)这个新代码时,任何调用这个 DLL 的应用程序只获得默认值,而不是文件中的值。

调用配置文件的构造函数如下所示:

    public class form : System.Windows.Forms.Form
{
public form()
{
// This call is required by the Windows Form Designer.
InitializeComponent();
IP = IPAddress.Parse(Settings1.Default.IPAddress);
}
}

我找到了 a reference to this problem on the MSDN forums用户说:

the 'old' values (the ones you define at development time) are hard coded. If the franework isn't able to access or open the config file it will use the defaults instead. This will always happen if you use settings in a dll.

  1. 这是否意味着我不能在配置文件中存储 DLL 的外部值? (我的同事以某种方式使这项工作...)

  2. 由于我的框架似乎无法访问或打开配置文件,我该如何找出它失败的原因?甚至可以检测到这种情况何时发生?

Decker:这有点帮助。不幸的是,我正在将此 DLL 写入规范,因此我实际上无权访问应用程序的配置文件。如上所述,我的同事创建了一个“Settings1.settings”文件。当时我不明白这一点,但现在看来,添加“1”可以使其远离调用它的任何应用程序的设置空间。

我想我想弄清楚的是为什么 DLL 似乎没有在同一目录中找到它旁边的配置文件。逐步跟踪代码没有发现任何问题。

顺便说一句,我可以将程序集的“输出类型”从“类库”更改为“Windows 应用程序”,并在 DLL 代码的开头添加以下行:

    [STAThread]
public static void Main(string[] args)
{
System.Windows.Forms.Application.Run(new form());
}

当我运行它时,它会生成一个不同的配置文件(“.exe.config”),我可以更改该文件并让它从文件中提取新数据。所以我有点困惑。有什么想法吗?

最佳答案

我一直都在使用这种技术。我经常有一个需要某些设置的库程序集,我需要通过测试项目和主要的“可执行”程序集来设置它们——无论是 Web 项目还是 Windows 服务项目。

您是正确的,当您为任何项目创 build 置文件时,它会添加一个应用程序配置文件。您为任何设置输入的值都存储在两个地方——配置文件和设置基础结构创建的类的属性中。当找不到配置文件时,将使用嵌入在属性中的值。

这是显示此类属性的片段:

这是一个片段,显示了生成的类中 ConcordanceServicesEndpointName 的默认值:

    [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("InternalTCP")]

public string ConcordanceServicesEndpointName {
get {
return ((string)(this["ConcordanceServicesEndpointName"]));
}
}

您要做的是从库程序集项目的 app.config 文件中复制配置部分,然后(小心地)将其合并到主程序集的适用 web.config 或 app.config 中。在运行时,这是唯一使用的配置文件。

举个例子:

<code><configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="LitigationPortal.Documents.BLL.DocumentsBLLSettings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<applicationSettings>
<LitigationPortal.Documents.BLL.DocumentsBLLSettings>
<setting name="ConcordanceServicesEndpointName" serializeAs="String">
<value>InternalTCP</value>
</setting>
</KayeScholer.LitigationPortal.Documents.BLL.DocumentsBLLSettings>
</applicationSettings>
</code>

您应该将这些部分复制到“真实”配置文件中。

关于c# - Settings.Default.<property> 始终返回默认值而不是持久存储(XML 文件)中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/192641/

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