Click or drag to resize

ExportRequest(String, Time, Time, Card, SignalWithUnit[], Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>) Constructor

Exports acquired trace data.

Namespace: RAYLASE.PDA.API
Assembly: RAYLASE.PDA.API.Protos (in RAYLASE.PDA.API.Protos.dll) Version: 1.2.0
Syntax
C#
public ExportRequest(
	string exportPath,
	Time from = null,
	Time to = null,
	Card card = null,
	SignalWithUnit[] signalWithUnit = null,
	bool? useDecimalPoint = null,
	bool? writeHeaders = null,
	bool? writeTimestamps = null
)

Parameters

exportPath  String
Path to save exported signals to (for PC running the service).
from  Time  (Optional)
Start of export in µs; defaults to first timestamp (0 µs).
to  Time  (Optional)
End of export in µs, defaults to last timestamp.
card  Card  (Optional)
If set exports acquired trace data for set card, otherwise for all currently connected devices.
signalWithUnit  SignalWithUnit[]  (Optional)
Signal( s) with unit( s) to export, defaults to all signals with default/last used units.
useDecimalPoint  Nullable<Boolean>  (Optional)
True: Use point "." as decimal separator; False: Use comma ",". Defaults to false (comma ",").
writeHeaders  Nullable<Boolean>  (Optional)
Write the export file headers. Defaults to true.
writeTimestamps  Nullable<Boolean>  (Optional)
Write an additional timestamp column to the export file. Defaults to false.
See Also