Loading Assembly During Application_Start

J

Jordan S.

If I load an .NET assembly during the application start event, and I load it
into the current app domain (as opposed to creating a new app doman and
loading it there)... is it true that the assembly will remain loaded with
its members available globally (e.g., to all Page class instances) for the
lifetime of the ASP.NET application (i.e., until it recycles)?

Thanks!
 
B

bruce barker

yes, the assembly remains loaded for the life of the app domain as there
is no unload.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top