NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

AppDomain.FriendlyName

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;

Property Value

Gets the friendly name of this application domain.

Remarks

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".

See Also

AppDomain Class | AppDomain Members | System Namespace