Installer.Install(IDictionary) Método

Definição

Quando substituído em uma classe derivada, executa a instalação.

public:
 virtual void Install(System::Collections::IDictionary ^ stateSaver);
public virtual void Install (System.Collections.IDictionary stateSaver);
abstract member Install : System.Collections.IDictionary -> unit
override this.Install : System.Collections.IDictionary -> unit
Public Overridable Sub Install (stateSaver As IDictionary)

Parâmetros

stateSaver
IDictionary

Um IDictionary usado para salvar as informações necessárias para realizar uma confirmação, reversão ou operação de desinstalação.

Exceções

O parâmetro stateSaver é null.

Ocorreu uma exceção no manipulador de evento BeforeInstall de um dos instaladores na coleção.

- ou -

Ocorreu uma exceção no manipulador de evento AfterInstall de um dos instaladores na coleção.

Exemplos

O exemplo a seguir demonstra o Install método da Installer classe . Uma classe é derivada da Installer classe base e o Install método é substituído.

   // Override the 'Install' method of the Installer class.
public:
   virtual void Install( IDictionary^ mySavedState ) override
   {
      Installer::Install( mySavedState );
      // Code maybe written for installation of an application.
      Console::WriteLine( "The Install method of 'MyInstallerSample' has been called" );
   }
// Override the 'Install' method of the Installer class.
public override void Install( IDictionary mySavedState )
{
   base.Install( mySavedState );
   // Code maybe written for installation of an application.
   Console.WriteLine( "The Install method of 'MyInstallerSample' has been called" );
}
' Override the 'Install' method of the Installer class.
Public Overrides Sub Install(mySavedState As IDictionary)
   MyBase.Install(mySavedState)
   ' Code maybe written for installation of an application.
   Console.WriteLine("The Install method of 'MyInstallerSample' has been called")
End Sub

Notas aos Herdeiros

Aplica-se a

Confira também