Top "Appdomain" questions

An application domain is an isolated environment in which Microsoft .NET assemblies can be sandboxed, granted specific permissions or PermissionSets and executed.

How to Load an Assembly to AppDomain with all references recursively?

I want to load to a new AppDomain some assembly which has a complex references tree (MyDll.dll -> …

c# .net reflection assemblies appdomain
What is AppDomain?

What is an AppDomain? What are the benefits of AppDomains or why Microsoft brought the concept of AppDomains, what was …

c# .net appdomain
Is there a way to force all referenced assemblies to be loaded into the app domain?

My projects are set up like this: Project "Definition" Project "Implementation" Project "Consumer" Project "Consumer" references both "Definition" and "Implementation", …

c# assemblies appdomain
facebook Error App Domain: [IP Address] is not a valid domain.?

I give my production server IP address as App domain in facebook application but it's not saved. It returns error …

facebook appdomain fbconnect
Can you modify the web.config and NOT restart the ASP.NET application?

Possible Duplicate: How to prevent an ASP.NET application restarting when the web.config is modified? Was just thinking about …

asp.net web-config appdomain application-pool application-restart
Facebook app creation app domain error

I'm trying to create Facebook app. Yet I had trouble right after creation wizard done his work. Changing nothing in …

facebook appdomain
What is a .NET application domain?

In particular, what are the implications of running code in two different application domains? How is data normally passed across …

.net appdomain
Loading multiple versions of the same assembly

I'm working with a third-party assembly and unfortunately I now need to load their latest and a previous version into …

c# assemblies appdomain multiple-versions
Loading DLLs into a separate AppDomain

I want to load one or more DLLs dynamically so that they run with a different security or basepath than …

c# .net appdomain
Loading/Unloading assembly in different AppDomain

I need to execute a method in an assembly loaded during runtime. Now I want to unload those loaded assemblies …

c# reflection appdomain mmc