The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
AppDomain::FriendlyName Property
.NET Framework (current version)
Gets the friendly name of this application domain.
Assembly: mscorlib (in mscorlib.dll)
Implements
_AppDomain::FriendlyName| Exception | Condition |
|---|---|
| AppDomainUnloadedException | The operation is attempted on an unloaded application domain. |
The friendly name of the default application domain is the file name of the process executable. For example, if the executable used to start the process is "c:\MyAppDirectory\MyAssembly.exe", the friendly name of the default application domain is "MyAssembly.exe".
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\ */
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: