Click or drag to resize

VectoredRequestsFreeOnSuccess Property

True if the requests resources can be freed on success. Defaults to true, and if required must be cleared before calling ExecuteAsync(Boolean).

Namespace:  Demo3D.PLC.Comms
Assembly:  PLC (in PLC.dll) Version: 18.04.00
Syntax
C#
public bool FreeOnSuccess { get; set; }

Property Value

Type: Boolean
Remarks

Each VectoredRequests belongs to the underlying protocol service that created it, and may be re-used by the service immediately after calling ExecuteAsync(Boolean) or Execute.

If you want to retain ownership of the VectoredRequests in order to replay requests, then you must set this property to False before calling ExecuteAsync(Boolean) or Execute for the first time.

See Also