ServiceProcessInstaller.Rollback Method
Rolls back service application information written to the registry by the installation procedure. This method is meant to be used by installation tools, which process the appropriate methods automatically.
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
Parameters
- savedState
- Type: System.Collections.IDictionary
An IDictionary that contains the context information associated with the installation.
| Exception | Condition |
|---|---|
| ArgumentException |
The savedState is null. -or- The savedState is corrupted or non-existent. |
Normally, you do not call the methods on ServiceProcessInstaller within your code; they are generally called only by the install utility. The install utility automatically calls the ServiceProcessInstaller.Install method during the installation process. It backs out failures, if necessary, by calling Rollback on the object that generated the exception.
An application's install routine maintains information automatically about the components already installed, using the project installer's Installer.Context. This state information, passed into Rollback as the savedState parameter, is continuously updated as the ServiceProcessInstaller instance and each ServiceInstaller instance is installed by the utility. It is usually unnecessary for your code to modify this state information explicitly.
Rollback passes to the calling method any exceptions thrown by base class methods or BeforeInstall / AfterInstall event handlers.
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.