NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ComponentInstaller.CopyFromComponent

Copies properties from the given component to this installer. This method will be called at design-time when the user clicks 'Add Installer' on a component that has specified this class as its installer. The installer should take all information it can from the live component and store it to be used at install time.

[Visual Basic]
MustOverride Public Sub CopyFromComponent( _
   ByVal component As IComponent _
)
[C#]
public abstract void CopyFromComponent(
   IComponent component
);
[C++]
public: virtual void CopyFromComponent(
   IComponent* component
) = 0;
[JScript]
public abstract function CopyFromComponent(
   component : IComponent
);

Parameters

component
[To be supplied.]

See Also

ComponentInstaller Class | ComponentInstaller Members | System.Configuration.Install Namespace