ServiceInstaller.CopyFromComponent(IComponent) 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.
Copies properties from an instance of ServiceBase to this installer.
public:
override void CopyFromComponent(System::ComponentModel::IComponent ^ component);
public override void CopyFromComponent (System.ComponentModel.IComponent component);
override this.CopyFromComponent : System.ComponentModel.IComponent -> unit
Public Overrides Sub CopyFromComponent (component As IComponent)
Parameters
- component
- IComponent
The IComponent from which to copy.
Exceptions
The component you are associating with this installer does not inherit from ServiceBase.
Remarks
This method will rarely be called within your code. CopyFromComponent is usually called only by designers.
CopyFromComponent saves the service name of the component
parameter to the ServiceName of the ServiceInstaller instance. (Because the parameter must be an instance of a class that derives from ServiceBase, component
is guaranteed to have a ServiceBase.ServiceName property.)
Note
If you are using the Visual Studio designer, this method is called at design time when the user clicks Add Installer
on a component that specified this class as its installer. The installer takes all information it can from the live component and stores it for use at install time.