首頁 > 後端開發 > C++ > 如何在執行時期動態修改App.config檔而不影響預設值?

如何在執行時期動態修改App.config檔而不影響預設值?

Mary-Kate Olsen
發布: 2025-01-25 17:32:10
原創
134 人瀏覽過

How Can I Dynamically Modify an App.config File at Runtime Without Affecting the Default Settings?

在運行時動態調整 App.config:一種乾淨的方法

在應用程式開發中,動態載入的模組通常需要調整app.config檔案。 然而,由於潛在的衝突和不穩定,通常會避免直接更改主要 app.config

挑戰:ConfigurationManager 與快取

ConfigurationManager 類別和 System.Configuration 命名空間使用快取。 這表示初始設定載入後所做的變更可能要等到應用程式重新啟動後才會生效。

解:AppConfig 類別

下面的AppConfig類別提供了這個問題的解決方案。 它允許修改運行時模組的app.config而不影響原始檔案。

<code class="language-csharp">public abstract class AppConfig : IDisposable
{
    public static AppConfig Change(string path)
    {
        return new ChangeAppConfig(path);
    }
    protected abstract void Dispose();
    private class ChangeAppConfig : AppConfig
    {
        private readonly string originalConfigPath =
            AppDomain.CurrentDomain.GetData("APP_CONFIG_FILE").ToString();
        private bool disposedValue;
        public ChangeAppConfig(string path)
        {
            AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", path);
            ResetConfiguration();
        }
        public override void Dispose()
        {
            if (!disposedValue)
            {
                AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", originalConfigPath);
                ResetConfiguration();
                disposedValue = true;
            }
            GC.SuppressFinalize(this);
        }
        private static void ResetConfiguration()
        {
            // Resetting internal ConfigurationManager state to reload config
            typeof(ConfigurationManager)
                .GetField("s_initState", BindingFlags.NonPublic | BindingFlags.Static)
                .SetValue(null, 0);
            typeof(ConfigurationManager)
                .GetField("s_configSystem", BindingFlags.NonPublic | BindingFlags.Static)
                .SetValue(null, null);
            typeof(ConfigurationManager)
                .Assembly.GetTypes()
                .Where(x => x.FullName == "System.Configuration.ClientConfigPaths")
                .First()
                .GetField("s_current", BindingFlags.NonPublic | BindingFlags.Static)
                .SetValue(null, null);
        }
    }
}</code>
登入後複製

使用方法

<code class="language-csharp">// Temporary config modification
using (AppConfig.Change(temporaryConfigPath))
{
    // Access and use the modified configuration
}

// Permanent config modification (replace default)
AppConfig.Change(newConfigPath);</code>
登入後複製

優點

此方法提供了一種乾淨有效的方法來管理動態載入模組的配置。 它避免直接更改預設的app.config,確保穩定性並防止衝突。 其簡單的實作使其能夠適應需要運行時配置變更的各種場景。

以上是如何在執行時期動態修改App.config檔而不影響預設值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板