6

我们正在加载读取配置文件的程序集(DLL)。我们需要更改配置文件,然后重新加载程序集。我们看到第二次加载程序集后,配置没有变化。有人看到这里有什么问题吗?我们省略了配置文件中读取的细节。

AppDomain subDomain;
string assemblyName = "mycli";
string DomainName = "subdomain"; 
Type myType;
Object myObject;

// Load Application domain + Assembly
subDomain = AppDomain.CreateDomain( DomainName,
                                    null,
                                    AppDomain.CurrentDomain.BaseDirectory,
                                    "",
                                    false);

myType = myAssembly.GetType(assemblyName + ".mycli");
myObject = myAssembly.CreateInstance(assemblyName + ".mycli", false, BindingFlags.CreateInstance, null, Params, null, null);

// Invoke Assembly
object[] Params = new object[1];
Params[0] = value;
myType.InvokeMember("myMethod", BindingFlags.InvokeMethod, null, myObject, Params);

// unload Application Domain
AppDomain.Unload(subDomain);

// Modify configuration file: when the assembly loads, this configuration file is read in

// ReLoad Application domain + Assembly
// we should now see the changes made in the configuration file mentioned above

4

3 回答 3

12

一旦加载了程序集,就无法卸载它。但是,您可以卸载 AppDomain,因此最好的办法是将逻辑加载到单独的 AppDomain 中,然后当您想要重新加载程序集时,您必须卸载 AppDomain 然后重新加载它。

于 2009-06-21T15:42:39.697 回答
3

我相信这样做的唯一方法是启动一个新的 AppDomain 并卸载原来的 AppDomain。这就是 ASP.NET 处理 web.config 更改的方式。

于 2009-06-21T15:30:24.167 回答
3

如果您只是更改某些部分,则可以使用 ConfigurationManager.Refresh("sectionName") 强制从磁盘重新读取。

static void Main(string[] args)
    {
        var data = new Data();
        var list = new List<Parent>();
        list.Add(new Parent().Set(data));

        var configValue = ConfigurationManager.AppSettings["TestKey"];
        Console.WriteLine(configValue);

        Console.WriteLine("Update the config file ...");
        Console.ReadKey();

        configValue = ConfigurationManager.AppSettings["TestKey"];
        Console.WriteLine("Before refresh: {0}", configValue);

        ConfigurationManager.RefreshSection("appSettings");

        configValue = ConfigurationManager.AppSettings["TestKey"];
        Console.WriteLine("After refresh: {0}", configValue);

        Console.ReadKey();
    }

(请注意,如果您使用 VS 托管进程,则在测试时必须更改 application.vshost.exe.config 文件。)

于 2009-06-21T15:48:27.063 回答