Uninstall Method
When overridden in a derived class, removes an installation.
Syntax
'Declaration Public Overrides Sub Uninstall( _ ByVal savedState As IDictionary _ )
'Usage Dim instance As MessageQueueInstaller Dim savedState As IDictionary instance.Uninstall(savedState)
public override void Uninstall( IDictionary savedState )
public: void Uninstall( IDictionary^ savedState ) override
Parameters
- savedState
- An System.Collections.IDictionary that contains the state of the computer after the installation was complete.
Exceptions
Exception | Description |
---|---|
System.ArgumentException | The saved-state System.Collections.IDictionary might have been corrupted. |
System.Configuration.Install.InstallException | An exception occurred while uninstalling. This exception is ignored and the uninstall continues. However, the application might not be fully uninstalled after the uninstallation completes. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also