An application domain is an isolated environment in which Microsoft .NET assemblies can be sandboxed, granted specific permissions or PermissionSets and executed.
85
votes
7answers
27k views
C#: at design time, how can I reliably determine the type of a variable that is declared using var?
I'm working on a completion (intellisense) facility for C# in emacs.
The idea is, if a user types a fragment, then asks for completion via a particular keystroke combination, the completion facility ...
35
votes
5answers
3k views
How to detect when application terminates?
This is a follow up to my initial question and I would like to present my findings and ask for corrections, ideas and insights. My findings (or rather interpretations) come from people's answers to my ...
24
votes
1answer
711 views
In .NET 4.0, how do I 'sandbox' an in-memory assembly and execute a method?
EDIT: A lot of people kept asking, so here is the reason why this question was being asked: www.devplusplus.com/Tests/CSharp/Hello_World
IMPORTANT NOTE: There are a million answers to similar ...
21
votes
3answers
6k views
I don't understand Application Domains
.NET has this concept of Application Domains which from what I understand can be used to load an assembly into memory. I've done some research on Application Domains as well as go to my local book ...
18
votes
3answers
2k views
Replacing Process.Start with AppDomains
Background
I have a Windows service that uses various third-party DLLs to perform work on PDF files. These operations can use quite a bit of system resources, and occasionally seem to suffer from ...
18
votes
8answers
6k views
Good example of use of AppDomain
I keep getting asked about AppDomains in interviews, and I know the basics:
they are an isolation level within an application (making them different from applications)
they can have threads (making ...
14
votes
1answer
2k views
14
votes
4answers
7k views
How to load a .NET assembly for reflection operations and subsequently unload it?
I'm writing a tool to report information about .NET applications deployed across environments and regions within my client's systems.
I'd like to read the values of assembly attributes in these ...
13
votes
2answers
7k views
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 the application domain boundary? Is it the same as passing data ...
13
votes
3answers
5k views
How to keep ASP.NET assemblies in AppDomain alive?
Scenario: I've an n-Tier enterprise ASP.NET application deployed using Web Deployment Projects. All tiers produce independent assemblies that is consumed by the ASP.NET application.
Problem: When I ...
12
votes
3answers
645 views
Isolation in a Multi-tenant ASP .NET Application
I'm building a multi-tenant ASP .NET application. Given that each tenant can configure their application dynamically (which may involve dynamic custom assemblies being loaded into memory), I need a ...
12
votes
4answers
3k views
AppDomain and MarshalByRefObject life time : how to avoid RemotingException?
When a MarshalByRef object is passed from an AppDomain (1) to another (2), if you wait 6 mins before calling a method on it in the second AppDomain (2) you will get a RemotingException :
...
12
votes
3answers
4k views
How best to communicate between AppDomains?
I have an application that needs to send a moderately high volume of messages between a number of AppDomains. I know that I could implement this using remoting, but I have also noticed that there are ...
12
votes
1answer
1k views
What is the scope of finalizer thread - per application domain or per process?
Based on all my reading there should be one GC thread to invoke all finalizers. Now, the question is what is the scope of this "one" thread - per process or per application domain, as the whole ...
12
votes
5answers
4k views
How to unload an assembly from the primary AppDomain?
I would like to know how to unload an assembly that is loaded into the main AppDomain.
I have the following code:
var assembly = Assembly.LoadFrom( FilePathHere );
I need/want to be able to unload ...
11
votes
2answers
963 views
Static Fields in AppDomain
I'm experimenting ideas around using AppDomain to manage some legacy code contains lots of static fields in a multi-threaded environment.
I read answers this question: How to use an AppDomain to ...
11
votes
2answers
259 views
In .NET, are static constructors called when a new AppDomain is created?
When I create a new AppDomain using AppDomain.CreateDomain in C#, will static constructors be called as asseblies are loaded inside the newly created AppDomain?
The assemblies in question have ...
10
votes
4answers
1k views
ASP.NET restarts when a folder is created, renamed or deleted
UPDATE -- process to replicate issue:
1) Create a website project at c:\projects\restart-demo
2) Add default web.config and a dummy aspx page test.aspx
3) Map IIS to point to the root folder ...
9
votes
4answers
677 views
Replace assembly at runtime with .NET
Is there a way with a plugin system (I would use with an IoC container) to load one version of an assembly at runtime and then replace that DLL while the AppDomain is running? I don't want to restart ...
9
votes
1answer
375 views
Best evidence to offer a sandboxed appdomain for a C# evaluator
I have a c# evaluator which uses the (I think) the .Net 4 new simplified sandboxed appdomain model to host the c# assembly, with remoting doing the rest. The call to create the appdomain is
...
9
votes
1answer
492 views
How can I prevent AppDomainUnloadedException after NUnit tests PLINQ code?
How can I diagnose and minimize or prevent AppDomainUnloadedException?
NUnit 2.5.2 consistently throws AppDomainUnloadedException after long (>10s) tests involving PLINQ.
Back in July 2008, Stephen ...
9
votes
5answers
837 views
Is there an AppDomain for every C# program?
Is there an AppDomain for every C# program even if we do not specifically create an AppDomain? Why is it required? I have read about third party assemblies crashing the entire application if we do not ...
9
votes
3answers
14k views
How to Load assembly to AppDomain with all references recursively?
I want to load to new AppDomin some assembly which has a complex references tree (MyDll.dll -> Microsoft.Office.Interop.Excel.dll -> Microsoft.Vbe.Interop.dll -> Office.dll -> stdole.dll)
As far as I ...
9
votes
4answers
2k views
Use the [Serializable] attribute or subclassing from MarshalByRefObject?
I'd like to use an object across AppDomains.
For this I can use the [Serializeable] attribute:
[Serializable]
class MyClass
{
public string GetSomeString() { return "someString" }
}
Or ...
8
votes
2answers
185 views
ASP.NET Varying Trust Level Per-Page by Assembly?
I have two web applications (pre-compiled sites), one is first-party and will run at full trust. Another is third-party and should run at partial trust (or with specific permissions).
...
8
votes
2answers
402 views
Can I prevent an uncaught exception in another AppDomain from shutting down the application?
I'm having trouble with a misbehaved library that throws an exception in a finalizer, which of course crashes the application.
To avoid this, I tried loading the library in its own AppDomain, but the ...
8
votes
1answer
2k views
Load Assembly in New AppDomain without loading it in Parent AppDomain
I am attempting to load a dll into a console app and then unload it and delete the file completely. The problem I am having is that the act of loading the dll in its own AppDomain creates a reference ...
8
votes
3answers
589 views
Passing a lambda to a secondary AppDomain as a stream of IL and assembling it back using DynamicMethod
Is it possible to pass a lambda expression to a secondary AppDomain as a stream of IL bytes and then assemble it back there using DynamicMethod so it can be called?
I'm not too sure this is the right ...
8
votes
2answers
1k views
Is AppDomain equivalent to a Process for .NET code?
I have to call some badly written 3rd party COM components that have memory leaks and uses Single Threaded Apartment [STA] within a long running process.
I know separate process will be nice way to ...
8
votes
3answers
697 views
Can I tell the CLR to marshal immutable objects between AppDomains by reference?
When marshaling objects between AppDomains in .NET the CLR will either serialize the object (if it has the Serializable attribute) or it will generate a proxy (if it inherits from MarshalByRef)
With ...
7
votes
2answers
193 views
One ASP.NET app (accidentally) in multiple app domains or frequent app recycing
I'm debugging an ASP.NET application which is seemingly randomly losing the content of some static fields. I did some simple custom logging (because even log4net was flaky), and found out that the ...
7
votes
4answers
623 views
What are app domains used for?
I understand roughly what an AppDomain is, however I don't fully understand the uses for an AppDomain.
I'm involved in a large server based C# / C++ application and I'm wondering how using ...
7
votes
3answers
562 views
.NET: Load two version of the same DLL
I need to load two versions of the same DLL in order to compare their outputs. I assume that I can use AppDomains for this, but I need some guidence.
7
votes
1answer
897 views
Unload CodeDom-compiled assembly
I have some C# code (let's call it "script") I am compiling at runtime. It uses an interface in my main program that I use to access its functions. Once compiling is done I have ...
7
votes
3answers
2k views
What is the minimun Cross AppDomain communication performance penalty?
I am trying to minimize the performance penalty of communicating across AppDomains in the same machine. In my toy example, Class A is loaded in AppDomain 1. It creates an AppDomain 2 and loads there ...
6
votes
1answer
98 views
Force unloading of DLL from assembly
I am attempting to unload a misbehaving third-party DLL from my .NET process, as it seems to be causing a problem which is always resolved by restarting my application.
Rather than restarting the ...
6
votes
2answers
102 views
Can I isolate my current AppDomain from being torn down, when another AppDomain I've loaded throws an unhandled exception?
Probably a copy of: Can I prevent an uncaught exception in another AppDomain from shutting down the application?
Been trying all day to figure out the answer to this question.
Just want to make sure ...
6
votes
2answers
149 views
How to Plugin Web Pages dynamically in ASP .NET (and update the plugin)?
For regular assemblies one can use MEF to load assemblies dynamically. If a live update is required of those assemblies, the recommendation is to use AppDomains to host the dynamic assemblies ...
6
votes
2answers
320 views
Highest Perfomance for Cross AppDomain Signaling
My performance sensitive application uses MemoryMappedFiles for pushing bulk data between many AppDomains. I need the fastest mechanism to signal a receiving AD that there is new data to be read.
The ...
6
votes
1answer
677 views
Inter-AppDomain communication problem
I've been developing a Windows Service in C#.
A set of configuration file paths is supplied to this service when it starts. For each of these files the service will spin up an AppDomain using the ...
6
votes
3answers
346 views
Moving data across the appdomain with good performance?
A little background
I'm working on an .net application that's uses plugins heavily, the application can request data from the plugins that is then sent back and displayed by the application.
First I ...
6
votes
3answers
284 views
Question about how to implement a c# host application with a plugin-like architecture
I want to have an application that works as a Host to many other small applications. Each one of those applications should work as kind of plugin to this main application. I call them plugins not in ...
6
votes
1answer
142 views
Is it possible to tell if an object is running in a different AppDomain?
I want to know if I can tell what appdomain a object was created in. This is for a unit test but also useful general knowledge. I have the following pieces of code (this is example code for ...
6
votes
3answers
3k views
C#/.NET: 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", but does not statically ...
6
votes
3answers
3k views
Pass and execute delegate in separate AppDomain
I want to exceute some piece of code in separate AppDomain with delegate. How can I do this?
UPD1: some more details about my problem
My program processing some data (one iteration is: get some data ...
6
votes
4answers
2k views
How can I prevent CompileAssemblyFromSource from leaking memory?
I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses more memory than it ...
6
votes
1answer
3k views
AppDomain.CreateInstanceFromAndUnwrap - Unable to cast transparent proxy
I'm writing a .NET library to inject managed DLLs into external processes. My current approach is:
Use CreateRemoteThread to force the target process to call LoadLibrary on an unmanaged bootstrap ...
6
votes
3answers
714 views
log4net across appdomains
I have an application which initializes log4net from one appdomain and needs to use it in another appdomain. Is it supported?
If not, should I initialize log4net from each appdomain? Is there a risk ...
6
votes
6answers
2k views
How to use an AppDomain to limit a static class' scope for thread-safe use?
I have been bitten by a poorly architected solution. It is not thread safe!
I have several shared classes and members in the solution, and during development all was cool...
BizTalk has sunk my ...
6
votes
1answer
1k views
What's the difference between AppDomain.CurrentDomain.BaseDirectory and Application.ExecutablePath in practice?
According to the MSDN, the BaseDirectory is where an AppDomain will look for DLLs to load, while ExecutablePath will provide the path to the original executable file (including file name). I know ...