This documentation is archived and is not being maintained.
AppDomain::FriendlyName Property
Visual Studio 2010
Gets the friendly name of this application domain.
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| AppDomainUnloadedException | The operation is attempted on an unloaded application domain. |
The following code example uses the FriendlyName property to get the friendly name of the current application domain. For the default application domain, the friendly name is the name of the application's executable file. The code example also displays additional information about the application domain.
using namespace System; int main() { AppDomain^ root = AppDomain::CurrentDomain; AppDomainSetup^ setup = gcnew AppDomainSetup(); setup->ApplicationBase = root->SetupInformation->ApplicationBase + "MyAppSubfolder\\"; AppDomain^ domain = AppDomain::CreateDomain("MyDomain", nullptr, setup); Console::WriteLine("Application base of {0}:\r\n\t{1}", root->FriendlyName, root->SetupInformation->ApplicationBase); Console::WriteLine("Application base of {0}:\r\n\t{1}", domain->FriendlyName, domain->SetupInformation->ApplicationBase); AppDomain::Unload(domain); } /* This example produces output similar to the following: Application base of MyApp.exe: C:\Program Files\MyApp\ Application base of MyDomain: C:\Program Files\MyApp\MyAppSubfolder\ */
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.
Show: