Click or drag to resize

IOAsyncDelegateT Delegate

Delegate for IO with the peer.

Namespace: Demo3D.PLC.Comms
Assembly: PLC (in PLC.dll) Version: 19.00.00
Syntax
C#
public delegate Task IOAsyncDelegate<T>(
	bool sync,
	T request
)
where T : VectoredRequest

Parameters

sync  Boolean
If true, the Task returned is guaranteed to be complete.
request  T
The IO request.

Type Parameters

T
Type of VectoredRequest.

Return Value

Task
Nothing.
See Also