Installer.BeforeInstall Olay
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Yükleyici koleksiyonundaki Install(IDictionary) her yükleyicinin yöntemi çalışmadan önce gerçekleşir.
public:
event System::Configuration::Install::InstallEventHandler ^ BeforeInstall;
public event System.Configuration.Install.InstallEventHandler BeforeInstall;
member this.BeforeInstall : System.Configuration.Install.InstallEventHandler
Public Custom Event BeforeInstall As InstallEventHandler
Olay Türü
Örnekler
Aşağıdaki örnekte olayı gösterilmektedir BeforeInstall . yöntemi tarafından OnBeforeInstall oluşturulur.
// MyInstaller is derived from the class 'Installer'.
private:
MyInstaller()
{
BeforeInstall += gcnew InstallEventHandler( this, &MyInstaller::BeforeInstallEventHandler );
}
void BeforeInstallEventHandler( Object^ sender, InstallEventArgs^ e )
{
// Add steps to perform any actions before the install process.
Console::WriteLine( "Code for BeforeInstallEventHandler" );
}
// MyInstaller is derived from the class 'Installer'.
MyInstaller() : base()
{
BeforeInstall += new InstallEventHandler(BeforeInstallEventHandler);
}
private void BeforeInstallEventHandler(object sender, InstallEventArgs e)
{
// Add steps to perform any actions before the install process.
Console.WriteLine("Code for BeforeInstallEventHandler");
}
' MyInstaller is derived from the class 'Installer'.
Sub New()
MyBase.New()
AddHandler BeforeInstall, AddressOf BeforeInstallEventHandler
End Sub
Private Sub BeforeInstallEventHandler(sender As Object, e As InstallEventArgs)
' Add steps to perform any actions before the install process.
Console.WriteLine("Code for BeforeInstallEventHandler")
End Sub
Şunlara uygulanır
Ayrıca bkz.
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.