Click or drag to resize

IConstructEmulatorConstruct Method

Called once when the module emulator has been created and tags bound, to allow final emulator construction.

Namespace:  Demo3D.PLC.Rockwell.Emulator.ModuleEmulators
Assembly:  PLC (in PLC.dll) Version: 18.03.00
Syntax
C#
void Construct(
	MessageRouter module,
	IComponentLogger? logger
)

Parameters

module
Type: Demo3D.PLC.Comms.CIP.NodesMessageRouter
The module CIP message router associated with this emulator.
logger
Type: Demo3D.CommonIComponentLogger
An object for logging messages.
Remarks

Will be called before the PLC connects to the device. Where there are multiple instances of this interface, the order of execution of events is strictly defined. See ExecutionOrderAttribute for details.

May be called in any thread.

See Also