I'm overwriting appSettings in the .config using the XMLDocument object and then saving through. While this works fine the changes aren't visible ti my application until it restarts.

Is there any way that I can refresh the config file while the application is running?

Cheers,

Eldon Ferran de Pol

Re: Refreshing .config by Jan

Jan
Mon Jan 26 07:45:55 CST 2004

Check out following article:
...
For other application types, such as Windows Forms or console applications,
there is a definite downside. Any change to our configuration settings
requires that the application be stopped and restarted. We can overcome this
by adding a bit of extra functionality to our custom section handler. It is
possible to create a custom section handler that detects when the config
file is changed. If this happens, we can refresh our settings values by
re-reading the custom section from the file.
...

http://tinyurl.com/2kdvm

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan


"Eldo nFerran de Pol" <anonymous@discussions.microsoft.com> wrote in message
news:001ED1EA-A6E0-49B8-85F4-CB8A94F113D5@microsoft.com...
>
> I'm overwriting appSettings in the .config using the XMLDocument object
and then saving through. While this works fine the changes aren't visible
ti my application until it restarts.
>
> Is there any way that I can refresh the config file while the application
is running?
>
> Cheers,
>
> Eldon Ferran de Pol



Re: Refreshing .config by anonymous

anonymous
Mon Jan 26 11:21:04 CST 2004


Thank you very much for the reply. After much hunting prior to posting I had found nothing. About three minutes after posting I found that very article

Thanks again

Eldon