ComponentInstaller.CopyFromComponent Method
.NET Framework 4
When overridden in a derived class, copies all the properties that are required at install time from the specified component.
Assembly: System.Configuration.Install (in System.Configuration.Install.dll)
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.
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);
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.