Installer.AfterInstall Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre depois que os métodos do Install(IDictionary) de todos os instaladores na propriedade Installers foram executados.
public:
event System::Configuration::Install::InstallEventHandler ^ AfterInstall;
public event System.Configuration.Install.InstallEventHandler AfterInstall;
member this.AfterInstall : System.Configuration.Install.InstallEventHandler
Public Custom Event AfterInstall As InstallEventHandler
Tipo de evento
Exemplos
O exemplo a seguir demonstra o AfterInstall evento . Ele é gerado pelo OnAfterInstall método .
// MyInstaller is derived from the class 'Installer'.
public:
MyInstaller()
{
AfterInstall += gcnew InstallEventHandler( this, &MyInstaller::AfterInstallEventHandler );
}
private:
void AfterInstallEventHandler( Object^ sender, InstallEventArgs^ e )
{
// Add steps to perform any actions after the install process.
Console::WriteLine( "Code for AfterInstallEventHandler" );
}
// MyInstaller is derived from the class 'Installer'.
MyInstaller() : base()
{
AfterInstall += new InstallEventHandler(AfterInstallEventHandler);
}
private void AfterInstallEventHandler(object sender, InstallEventArgs e)
{
// Add steps to perform any actions after the install process.
Console.WriteLine("Code for AfterInstallEventHandler");
}
' MyInstaller is derived from the class 'Installer'.
Sub New()
MyBase.New()
AddHandler AfterInstall, AddressOf AfterInstallEventHandler
End Sub
Private Sub AfterInstallEventHandler(ByVal sender As Object, _
ByVal e As InstallEventArgs)
' Add steps to perform any actions after the install process.
Console.WriteLine("Code for AfterInstallEventHandler")
End Sub
Aplica-se a
Confira também
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.