DLL依赖和HTTP模块

时间:2009-10-22 15:32:22

标签: c# httpmodule

我在dll中有一个HTTP模块,用于Web应用程序。我需要在Web应用程序中调用一个类(使用dll中定义的接口 - 所以我们没有紧密耦合)。

我在web.config的appsettings中定义了类,但无法确定如何创建实例。我使用Type.GetType但它只返回一个null。

我的app.config是

<add key ="ActiveClass" value ="WebApplication.Class1,WebApplication4">

我的Type.GetType调用是

Type activeClassType = 
    Type.GetType(ConfigurationSettings.AppSettings["ActiveClass"] as string);  

感谢任何帮助。

由于

波奇

1 个答案:

答案 0 :(得分:0)

我已经设法通过使用appdomain来实现。