ComponentInstaller.IsEquivalentInstaller Method
.NET Framework 4
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 = new 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'"); }
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.