EventLogInstaller.IsEquivalentInstaller(ComponentInstaller) Method

Definition

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

Applies to

See also