Installer.Install Method
Assembly: System.Configuration.Install (in system.configuration.install.dll)
| Exception type | Condition |
|---|---|
| The stateSaver parameter is a null reference (Nothing in Visual Basic). | |
| An exception occurred in the BeforeInstall event handler of one of the installers in the collection. -or- An exception occurred in the AfterInstall event handler of one of the installers in the collection. |
The following example demonstrates the Install method of the Installer class. A class is derived from the Installer base class and the Install method is overridden.
// Override the 'Install' method of the Installer class. public override void Install( IDictionary mySavedState ) { base.Install( mySavedState ); // Code maybe written for installation of an application. Console.WriteLine( "The Install method of 'MyInstallerSample' has been called" );
// Override the 'Install' method of the Installer class.
public void Install(IDictionary mySavedState)
{
super.Install(mySavedState);
// Code maybe written for installation of an application.
Console.WriteLine("The Install method of"
+" 'MyInstallerSample' has been called");
//Install
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
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.