IManagementHost.ApplicationName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the unique name of the application that contains the host instance.
public:
property System::String ^ ApplicationName { System::String ^ get(); };
public string ApplicationName { get; }
member this.ApplicationName : string
Public ReadOnly Property ApplicationName As String
Property Value
The unique name of the application that contains the host instance.
Examples
The following example gets the application name.
string IManagementHost.ApplicationName {
get {
return _applicationName;
}
}
Remarks
You can use the ApplicationName property to associate profile information with an application.