NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Installer BeforeRollback Event

Occurs before the installations handled by the installers in the InstallerCollection of this instance are rolled back.

The following declaration shows the syntax for a method that handles the BeforeRollback event.

[Visual Basic]
Private Sub InstallerName_BeforeRollback( _
   ByVal sender As Object, _
   ByVal e As InstallEventArgs _
)
[C#]
private void InstallerName_BeforeRollback(
   object sender,
   InstallEventArgs e
);
[C++]
private: void InstallerName_BeforeRollback(
   Object* sender,
   InstallEventArgs* e
);
[JScript]
private InstallerName_BeforeRollback(
   sender : Object,
   e : InstallEventArgs
);

Parameters

sender
The source of the event.
e
An InstallEventArgs that contains the event data.

Remarks

This event is raised before the installations handled by the installers contained in this instance's InstallerCollection are rolled back. Attach event-handling methods that need to run before the Rollback methods are called to this event.

See Also

Installer Class | Installer MembersTopic | System.Configuration.Install Namespace | Installer.OnAfterInstall | Installer.OnAfterRollback | Installer.OnAfterUninstall | Installer.OnBeforeCommit | Installer.OnBeforeInstall | Installer.OnAfterCommit | Installer.OnBeforeUninstall