Click or drag to resize

VectoredRequestsExecuteAsync Method (Boolean)

Executes a vectored request.

Namespace:  Demo3D.PLC.Comms
Assembly:  PLC (in PLC.dll) Version: 18.04.00
Syntax
C#
public abstract Task ExecuteAsync(
	bool sync
)

Parameters

sync
Type: SystemBoolean
If true, the Task returned is guaranteed to be complete.

Return Value

Type: Task
Nothing.
Remarks

A VectoredRequests returned by a call to ReadV or WriteV belongs to the client service, and may be freed and re-used immediately after calling this method.

A VectoredRequests can be replayed, but only if you set FreeOnSuccess to false before calling this method. Unsetting FreeOnSuccess transfers 'ownership' of this instance to the caller.

See Also