Installer.AfterInstall Event
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.
Occurs after the Install(IDictionary) methods of all the installers in the Installers property have run.
public:
event System::Configuration::Install::InstallEventHandler ^ AfterInstall;
C#
public event System.Configuration.Install.InstallEventHandler AfterInstall;
member this.AfterInstall : System.Configuration.Install.InstallEventHandler
Public Custom Event AfterInstall As InstallEventHandler
The following example demonstrates the AfterInstall event. It is raised by the OnAfterInstall method.
// 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" );
}
C#
// 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
Produkto | Mga Bersyon |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Makipagtulungan sa amin sa GitHub
Ang pinagmulan para sa content na ito ay mahahanap sa GitHub, kung saan maaari ka ring lumikha at sumuri ng mga isyu at mga pull request. Para sa higit pang impormasyon, tingnan ang aming gabay sa contributor.
Feedback sa .NET
Ang .NET ay isang open source na project. Pumili ng link para magbibigay ng feedback: