Click or drag to resize

TraceBufferClientAcquire Method

Reads all currently available events. Skips all events that occur before the start label. Remember that for this to work the desired events have to be enabled before TraceBufferConfig. At least Label has to be enabled. Events will only be received if Start was called before.

Namespace: RAYLASE.SPICE3.TraceBuffer
Assembly: RAYLASE.SPICE3.TraceBufferLib (in RAYLASE.SPICE3.TraceBufferLib.dll) Version: 3.4.1
Syntax
C#
public List<TraceEvent> Acquire(
	ushort startLabel,
	ushort endLabel
)

Parameters

startLabel  UInt16
The label which defines when event collection should begin.
endLabel  UInt16
The label which defines when event collection should end.

Return Value

ListTraceEvent
List of all events that occurred between startLabel and endLabel (may be empty if only the startEvent and endEvent was available).
See Also