Читати англійською Редагувати

Поділитися через


ComponentInstaller.CopyFromComponent(IComponent) Method

Definition

When overridden in a derived class, copies all the properties that are required at install time from the specified component.

C#
public abstract void CopyFromComponent(System.ComponentModel.IComponent component);

Parameters

component
IComponent

The component to copy from.

Examples

The following example defines a class MyInstallClass, which creates the event log and copies the properties of the event log component to the EventLogInstaller. It also checks whether the ServiceInstaller can perform the same kind of installation as the EventLogInstaller.

C#
EventLogInstaller myEventLogInstaller = new EventLogInstaller();
// Create a source for the specified event log, on local computer.
EventLog.CreateEventSource("MyEventSource","MyEventLog", ".");
// Create an event log instance and associate it with the log .
EventLog myEventLog = new EventLog("MyEventLog", ".", "MyEventSource");
// Copy the properties that are required at install time from
// the event log component to the installer.
myEventLogInstaller.CopyFromComponent(myEventLog);

Remarks

The installer should take all the information it can from the live component, and store it for use at install time.

Applies to

Продукт Версії
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1