PacketHandler Delegate

Represents the method that will handle the PacketArrived event.

Definition

Namespace: Wolfram.NETLink
Assembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
C#
public delegate bool PacketHandler(
	IKernelLink ml,
	PacketType pkt
)

Parameters

ml  IKernelLink
The link on which the packet arrived.
pkt  PacketType
The type of packet.

Return Value

Boolean
You should always return true.

Remarks

See the discussion for the PacketArrived event for more information.

See Also