Read-only. Gets the friendly name of this application domain.
[Visual Basic] Public ReadOnly Property FriendlyName As String [C#] public string FriendlyName {get;} [C++] public: __property String* get_FriendlyName(); [JScript] public function get FriendlyName() : String;
Gets the friendly name of this application domain.
The friendly name of an application domain is the name of the assembly file loaded in the application domain. The friendly name is formed by stripping the directory specification from the assembly's codebase. For example, if an assembly with the file name is "c:\MyAppDirectory\MyAssembly.exe"
is loaded in an application domain, the friendly name of the application domain will be "MyAssembly.exe"
.