ComponentInstaller::IsEquivalentInstaller Method (ComponentInstaller^)
Determines if the specified installer installs the same object as this installer.
Assembly: System.Configuration.Install (in System.Configuration.Install.dll)
Parameters
- otherInstaller
-
Type:
System.Configuration.Install::ComponentInstaller^
The installer to compare.
Return Value
Type: System::Booleantrue if this installer and the installer specified by the otherInstaller parameter install the same object; otherwise, false.
The following example defines a class MyInstallClass, which creates the event log and copies the properties of the event log component to the EventLogInstaller object. It also checks whether ServiceInstaller object can handle the same kind of installation as EventLogInstaller.
ServiceInstaller^ myServiceInstaller = gcnew ServiceInstaller; // Check whether 'ServiceInstaller' object can handle the same // kind of installation as 'EventLogInstaller' object. if ( myEventLogInstaller->IsEquivalentInstaller( myServiceInstaller ) ) { Console::WriteLine( "'ServiceInstaller' can handle the same kind " + "of installation as EventLogInstaller" ); } else { Console::WriteLine( "'ServiceInstaller' can't handle the same " + "kind of installation as 'EventLogInstaller'" ); }
Available since 1.1