更新自定义配置部分
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能,您将没有对此文件的写入权限。 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.