Installer.OnAfterInstall(IDictionary) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raises the AfterInstall event.
protected:
virtual void OnAfterInstall(System::Collections::IDictionary ^ savedState);
protected virtual void OnAfterInstall (System.Collections.IDictionary savedState);
abstract member OnAfterInstall : System.Collections.IDictionary -> unit
override this.OnAfterInstall : System.Collections.IDictionary -> unit
Protected Overridable Sub OnAfterInstall (savedState As IDictionary)
Parameters
- savedState
- IDictionary
An IDictionary that contains the state of the computer after all the installers contained in the Installers property have completed their installations.
Examples
The following example demonstrates the OnAfterInstall method. This method is overridden in the derived class. Space is provided to add steps to be done after the installation in the OnAfterInstall method.
// Override the 'OnAfterInstall' method.
protected:
virtual void OnAfterInstall( IDictionary^ savedState ) override
{
Installer::OnAfterInstall( savedState );
// Add steps to be done after the installation is over.
Console::WriteLine( "OnAfterInstall method of MyInstaller called" );
}
// Override the 'OnAfterInstall' method.
protected override void OnAfterInstall(IDictionary savedState)
{
base.OnAfterInstall(savedState);
// Add steps to be done after the installation is over.
Console.WriteLine("OnAfterInstall method of MyInstaller called");
}
' Override the 'OnAfterInstall' method.
Protected Overrides Sub OnAfterInstall(savedState As IDictionary)
MyBase.OnAfterInstall(savedState)
' Add steps to be done after the installation is over.
Console.WriteLine("OnAfterInstall method of MyInstaller called")
End Sub
Remarks
This method is called after the Install methods of all the installers in this instance's InstallerCollection run.
Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.
The OnAfterInstall method allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to Inheritors
When overriding OnAfterInstall(IDictionary) in a derived class, be sure to call the base class's OnAfterInstall(IDictionary) method so that registered delegates receive the event.