Freigeben über


Installer.Committed-Ereignis

Tritt ein, nachdem alle Installationsprogramme in der Installers-Eigenschaft ein Commit für ihre Installationen ausgeführt haben.

Namespace: System.Configuration.Install
Assembly: System.Configuration.Install (in system.configuration.install.dll)

Syntax

'Declaration
Public Event Committed As InstallEventHandler
'Usage
Dim instance As Installer
Dim handler As InstallEventHandler

AddHandler instance.Committed, handler
public event InstallEventHandler Committed
public:
event InstallEventHandler^ Committed {
    void add (InstallEventHandler^ value);
    void remove (InstallEventHandler^ value);
}
/** @event */
public void add_Committed (InstallEventHandler value)

/** @event */
public void remove_Committed (InstallEventHandler value)
JScript unterstützt die Verwendung von Ereignissen, aber nicht die Deklaration von neuen Ereignissen.

Beispiel

Das folgende Beispiel veranschaulicht das Committed-Ereignis. Dieses wird von der OnCommitted-Methode ausgelöst.

Public Sub New()
   MyBase.New()
   ' Attach the 'Committed' event.
   AddHandler Me.Committed, AddressOf MyInstaller_Committed
End Sub 'New

' Event handler for 'Committed' event.
Private Sub MyInstaller_Committed(ByVal sender As Object, ByVal e As InstallEventArgs)
   Console.WriteLine("")
   Console.WriteLine("Committed Event occured.")
   Console.WriteLine("")
End Sub 'MyInstaller_Committed
public MyInstallerClass() :base()
{
   // Attach the 'Committed' event.
   this.Committed += new InstallEventHandler(MyInstaller_Committed);
}

// Event handler for 'Committed' event.
private void MyInstaller_Committed(object sender, InstallEventArgs e)
{
   Console.WriteLine("Committed Event occured.");
}
public:
   MyInstallerClass()
   {
      // Attach the 'Committed' event.
      this->Committed += gcnew InstallEventHandler( this, &MyInstallerClass::MyInstaller_Committed );
   }

private:
   // Event handler for 'Committed' event.
   void MyInstaller_Committed( Object^ sender, InstallEventArgs^ e )
   {
      Console::WriteLine( "Committed Event occured." );
   }
public MyInstallerClass()
{
    // Attach the 'Committed' event.
    this.add_Committed(new InstallEventHandler(MyInstaller_Committed));
} //MyInstallerClass

// Event handler for 'Committed' event.
private void MyInstaller_Committed(Object sender, InstallEventArgs e)
{
    Console.WriteLine("Committed Event occured.");
} //MyInstaller_Committed

.NET Framework-Sicherheit

  • Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter .

Plattformen

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

Installer-Klasse
Installer-Member
System.Configuration.Install-Namespace
Committing
OnCommitted
OnCommitting