Click or drag to resize

ArchiveReader.ReadData(Int32, DateTime, DateTime, Boolean) Method

Reads ArchiveDataPoints from the ArchiveFile.

Namespace: GSF.Historian.Files
Assembly: GSF.Historian (in GSF.Historian.dll) Version: 2.4.230-beta
Syntax
public IEnumerable<IDataPoint> ReadData(
	int historianID,
	DateTime startTime,
	DateTime endTime,
	bool timeSorted = true
)
View Source

Parameters

historianID  Int32
Historian identifier for which ArchiveDataPoints are to be retrieved.
startTime  DateTime
Start DateTime (in UTC) for the ArchiveDataPoints to be retrieved.
endTime  DateTime
End DateTime (in UTC) for the ArchiveDataPoints to be retrieved.
timeSorted  Boolean  (Optional)
Indicates whether the data retrieved from the archive should be time sorted.

Return Value

IEnumerable<IDataPoint>
IEnumerable<T> object containing zero or more ArchiveDataPoints.
See Also