Click or drag to resize

InstallerBase Class

Defines a common installer class for the applications based on the time-series framework.
Inheritance Hierarchy
SystemObject
  SystemMarshalByRefObject
    System.ComponentModelComponent
      System.Configuration.InstallInstaller
        GSF.TimeSeriesInstallerBase

Namespace: GSF.TimeSeries
Assembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.181-beta
Syntax
public class InstallerBase : Installer
View Source

The InstallerBase type exposes the following members.

Constructors
 NameDescription
Public methodInstallerBaseInitializes a new instance of the InstallerBase class
Top
Properties
 NameDescription
Protected propertyCanRaiseEventsGets a value indicating whether the component can raise an event.
(Inherited from Component)
Protected propertyConfigurationName Gets associated application configuration file name.
Public propertyContainerGets the IContainer that contains the Component.
(Inherited from Component)
Public propertyContextGets or sets information about the current installation.
(Inherited from Installer)
Protected propertyDesignModeGets a value that indicates whether the Component is currently in design mode.
(Inherited from Component)
Protected propertyEventsGets the list of event handlers that are attached to this Component.
(Inherited from Component)
Public propertyHelpTextGets the help text for all the installers in the installer collection.
(Inherited from Installer)
Public propertyInstallersGets the collection of installers that this installer contains.
(Inherited from Installer)
Public propertyParentGets or sets the installer containing the collection that this installer belongs to.
(Inherited from Installer)
Public propertySiteGets or sets the ISite of the Component.
(Inherited from Component)
Top
Methods
 NameDescription
Public methodCommitWhen overridden in a derived class, completes the install transaction.
(Inherited from Installer)
Public methodCreateObjRefCreates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
(Inherited from MarshalByRefObject)
Public methodDisposeReleases all resources used by the Component.
(Inherited from Component)
Protected methodDispose(Boolean)Releases the unmanaged resources used by the Component and optionally releases the managed resources.
(Inherited from Component)
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeReleases unmanaged resources and performs other cleanup operations before the Component is reclaimed by garbage collection.
(Inherited from Component)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetLifetimeServiceRetrieves the current lifetime service object that controls the lifetime policy for this instance.
(Inherited from MarshalByRefObject)
Protected methodGetServiceReturns an object that represents a service provided by the Component or by its Container.
(Inherited from Component)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodInitializeLifetimeServiceObtains a lifetime service object to control the lifetime policy for this instance.
(Inherited from MarshalByRefObject)
Public methodInstall Installs the class.
(Overrides InstallerInstall(IDictionary))
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Protected methodMemberwiseClone(Boolean)Creates a shallow copy of the current MarshalByRefObject object.
(Inherited from MarshalByRefObject)
Protected methodOnAfterInstallRaises the AfterInstall event.
(Inherited from Installer)
Protected methodOnAfterRollbackRaises the AfterRollback event.
(Inherited from Installer)
Protected methodOnAfterUninstallRaises the AfterUninstall event.
(Inherited from Installer)
Protected methodOnBeforeInstallRaises the BeforeInstall event.
(Inherited from Installer)
Protected methodOnBeforeRollbackRaises the BeforeRollback event.
(Inherited from Installer)
Protected methodOnBeforeUninstallRaises the BeforeUninstall event.
(Inherited from Installer)
Protected methodOnCommittedRaises the Committed event.
(Inherited from Installer)
Protected methodOnCommittingRaises the Committing event.
(Inherited from Installer)
Protected methodOnSystemSettingsLoaded Called when system settings are loaded.
Public methodRollbackWhen overridden in a derived class, restores the pre-installation state of the computer.
(Inherited from Installer)
Public methodToStringReturns a String containing the name of the Component, if any. This method should not be overridden.
(Inherited from Component)
Public methodUninstallWhen overridden in a derived class, removes an installation.
(Inherited from Installer)
Top
Events
 NameDescription
Public eventAfterInstallOccurs after the Install(IDictionary) methods of all the installers in the Installers property have run.
(Inherited from Installer)
Public eventAfterRollbackOccurs after the installations of all the installers in the Installers property are rolled back.
(Inherited from Installer)
Public eventAfterUninstallOccurs after all the installers in the Installers property perform their uninstallation operations.
(Inherited from Installer)
Public eventBeforeInstallOccurs before the Install(IDictionary) method of each installer in the installer collection has run.
(Inherited from Installer)
Public eventBeforeRollbackOccurs before the installers in the Installers property are rolled back.
(Inherited from Installer)
Public eventBeforeUninstallOccurs before the installers in the Installers property perform their uninstall operations.
(Inherited from Installer)
Public eventCommittedOccurs after all the installers in the Installers property have committed their installations.
(Inherited from Installer)
Public eventCommittingOccurs before the installers in the Installers property committ their installations.
(Inherited from Installer)
Public eventDisposedOccurs when the component is disposed by a call to the Dispose method.
(Inherited from Component)
Top
Extension Methods
 NameDescription
Public Extension MethodGetEnumValueOrDefault Gets the enumeration constant for value, if defined in the enumeration, or a default value.
(Defined by EnumExtensions)
Public Extension MethodGetEnumValueOrDefaultT Gets the enumeration constant for this value, if defined in the enumeration, or a default value.
(Defined by EnumExtensions)
Top
Remarks
Users may choose to only install service application or its management tools, in either case common installation steps need to occur, so these steps are managed in this one common base class.
See Also