I have a program in which I am creating two appdomains A and B . I want to share a dictionary between them. Basically I am creating the dictionary in appdomain A. At this stage, for each key in the di
I have a web site and a web service under the same virtual directory and some of the web pages call the web service.
I\'m working on porting a client/server application to .NET.开发者_JAVA百科The current C version of the server has one executable for a process (a Windows service) that listens for socket connections.
Is it possible to load multiple assemblies into a new AppDomain and apply different PermissionSet to each?
I\'m planning to write a game, where the user has to write his own C# code to play it. Since I can\'t trust the user submitted code I want to create an AppDomain for each user.
I want to know if it is possible to forward all page requests within a sub directory of 开发者_Python百科an ASP.NET web application to a new application domain.This way I can dynamically load assembli
I have created an AppDomain with a different base directory. However, I cannot seem to load the currently executing assembly into the other AppDomain without having a copy of the current executing ass
When getting the file path of the current conf开发者_如何学运维iguration file, what is the difference in using the AppDomain namespace and the ConfigurationManager namespace? And when would you use on
I\'m using a VirtualPathProvider to include usercontrols that are not available at compile-time. Everything is working correctly except for the reference to the dll that actually contains the control.
Hi I have code that looks like the following: public static I Load<I>(string appDomainName, string fqDllName, string classType) where I : class