更新自定义配置部分

发布于 2024-10-09 18:31:00 字数 574 浏览 0 评论 0原文

我的 app.config 中有一个配置部分,看起来像这样,

<configSections>
    <section name="importSettingsSection" type="MyApp.Console.Config.ImportSettingsSection, MyApp.Console"/>
</configSections>
<importSettingsSection>
    <serviceSettings pollInterval="50" runAt="1400" />
    <systems>
        <add name="System1" lastRunDate="12/01/2010" />
        <add name="System2" lastRunDate="12/01/2010" />
    </systems>
</importSettingsSection>

我想知道是否有人可以帮助我弄清楚如何在运行时修改系统节点下的lastRunDate。

谢谢

I have a config Section in my app.config that looks like this

<configSections>
    <section name="importSettingsSection" type="MyApp.Console.Config.ImportSettingsSection, MyApp.Console"/>
</configSections>
<importSettingsSection>
    <serviceSettings pollInterval="50" runAt="1400" />
    <systems>
        <add name="System1" lastRunDate="12/01/2010" />
        <add name="System2" lastRunDate="12/01/2010" />
    </systems>
</importSettingsSection>

I was wondering if anyone could help me figure out how to modify the lastRunDate under the systems node at runtime.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

℉服软 2024-10-16 18:31:00

您不能,您将没有对此文件的写入权限。 app.config 文件不是数据库,请将其写在其他地方。文件、数据库,无论你喜欢什么。

You can't, you won't have write access to this file. An app.config file is not a database, write it somewhere else. A file, a database, whatever you like.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文