EventLogInstaller.IsEquivalentInstaller(ComponentInstaller) Method
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.
Determines whether an installer and another specified installer refer to the same source.
public:
override bool IsEquivalentInstaller(System::Configuration::Install::ComponentInstaller ^ otherInstaller);
public override bool IsEquivalentInstaller (System.Configuration.Install.ComponentInstaller otherInstaller);
override this.IsEquivalentInstaller : System.Configuration.Install.ComponentInstaller -> bool
Public Overrides Function IsEquivalentInstaller (otherInstaller As ComponentInstaller) As Boolean
Parameters
- otherInstaller
- ComponentInstaller
The installer to compare.
Returns
true
if this installer and the installer specified by the otherInstaller
parameter would install or uninstall the same source; otherwise, false
.
Remarks
Typically, you do not call the methods of the EventLogInstaller from within your code; they are generally called only by the Installer tool (Installutil.exe).