ComponentInstaller.IsEquivalentInstaller(ComponentInstaller) Método

Definición

Determina si el instalador especificado instala el mismo objeto que este instalador.

public:
 virtual bool IsEquivalentInstaller(System::Configuration::Install::ComponentInstaller ^ otherInstaller);
public virtual bool IsEquivalentInstaller (System.Configuration.Install.ComponentInstaller otherInstaller);
abstract member IsEquivalentInstaller : System.Configuration.Install.ComponentInstaller -> bool
override this.IsEquivalentInstaller : System.Configuration.Install.ComponentInstaller -> bool
Public Overridable Function IsEquivalentInstaller (otherInstaller As ComponentInstaller) As Boolean

Parámetros

otherInstaller
ComponentInstaller

Instalador que se va a comparar.

Devoluciones

Es true si este instalador y el instalador especificado por el parámetro otherInstaller instalan el mismo objeto; en caso contrario, false.

Ejemplos

En el ejemplo siguiente se define una clase MyInstallClass, que crea el registro de eventos y copia las propiedades del componente de registro de eventos en el EventLogInstaller objeto . También comprueba si el ServiceInstaller objeto puede controlar el mismo tipo de instalación que 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'" );
}
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'");
}
Dim myServiceInstaller As New ServiceInstaller()
' Check whether 'ServiceInstaller' object can handle the same 
' kind of installation as 'EventLogInstaller' object.
If myEventLogInstaller.IsEquivalentInstaller(myServiceInstaller) Then
   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'")
End If

Comentarios

Normalmente, IsEquivalentInstaller solo devuelve true si este instalador y el instalador especificados por el parámetro instalan otherInstaller el mismo objeto. En tal caso, llamar al Install método o Uninstall en cualquiera de los instaladores da como resultado el mismo estado del sistema.

Se aplica a