Installer::Committed Event
.NET Framework (current version)
Occurs after all the installers in the Installers property have committed their installations.
Assembly: System.Configuration.Install (in System.Configuration.Install.dll)
The following example demonstrates the Committed event. It is raised by the OnCommitted method.
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." ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: