IPluginMessageReceiverReceiveMessage Method

The method is called from outside. E.g. one plugin send to a import library to import some data.

Definition

Namespace: PCBI.Plugin.Interfaces
Assembly: PCB-Investigator (in PCB-Investigator.exe) Version: 0
C#
bool ReceiveMessage(
	string Sender,
	int MessageID,
	List<Object> Params
)

Parameters

Sender  String
Name of sender plugin in or PCB-Investigator.
MessageID  Int32
ID of sended message, this is defined different for each plugin.
Params  ListObject
Params to do the action of MessageID. E.g. path of files or settings.

Return Value

Boolean
true if message is handeled and false if no action is done.

See Also