4

我正在编写一个 http 模块,并且我想添加一个在(且仅当)appdomain 被回收时调用的方法。我不想向 global.asax 添加任何内容,我想在 http 模块中以编程方式进行。

但是,在模块方法中传递的实例上似乎没有End事件。如何订阅活动?HttpApplicationInitApplication_End

4

1 回答 1

3

怎么样:

AppDomain.CurrentDomain.DomainUnload +=new EventHandler(CurrentDomain_DomainUnload);

我认为这比应该涵盖回收的更准确。Application.End

于 2012-02-23T15:29:53.543 回答