Installer::Committing Event
.NET Framework (current version)
Occurs before the installers in the Installers property committ their installations.
Assembly: System.Configuration.Install (in System.Configuration.Install.dll)
The following example demonstrates the Committing event. It is raised by the OnCommitting method.
public: MyInstallerClass() : Installer() { // Attach the 'Committing' event. this->Committing += gcnew InstallEventHandler( this, &MyInstallerClass::MyInstaller_Committing ); } private: // Event handler for 'Committing' event. void MyInstaller_Committing( Object^ /*sender*/, InstallEventArgs^ /*e*/ ) { Console::WriteLine( "Committing Event occured." ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: