1 out of 1 rated this helpful - Rate this topic

AppDomain.CurrentDomain Property

Gets the current application domain for the current Thread.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
public static AppDomain CurrentDomain { get; }

Property Value

Type: System.AppDomain
The current application domain.

The following code example creates a new application domain, using evidence from the current application domain. The CurrentDomain property is used to obtain an AppDomain object that represents the current application domain, and the evidence is obtained using the Evidence property. The FriendlyName property provides the name of the current application domain, which is then displayed at the command line.



using System;
using System.Reflection;
using System.Security.Policy;  //for evidence object

class ADSetupInformation
{
	public static void Main()
	{
		//Create the application domain setup information.
		AppDomainSetup domaininfo = new AppDomainSetup();
		domaininfo.ApplicationBase = System.Environment.CurrentDirectory;
		//Create evidence for new appdomain.
		Evidence adevidence = AppDomain.CurrentDomain.Evidence;
		// Create the new application domain using setup information.
		AppDomain domain = AppDomain.CreateDomain("MyDomain", adevidence, domaininfo);

		// Write out the application domain information.
            Console.WriteLine("Host domain: " + AppDomain.CurrentDomain.FriendlyName);
            Console.WriteLine("new child domain: " + domain.FriendlyName);
            Console.WriteLine();
            Console.WriteLine("Application base is: " + domain.SetupInformation.ApplicationBase);

		AppDomain.Unload(domain);
	
		
	}
	
}


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ