Click or drag to resize

TrackingArchive<TEntity>.GetArchivedData Method (Object, JulianDate, JulianDate, Int32,String[])

Retrieves archived properties for the provided entity over the provided time period.

Namespace:  AGI.Foundation.Tracking
Assembly:  AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
public RawEntityData<TEntity> GetArchivedData(
	Object entityIdentifier,
	JulianDate start,
	JulianDate stop,
	int maximumRecords,
	params string[] propertyNames
)

Parameters

entityIdentifier
Type: System.Object
The identifier of the entity whose properties to retrieve.
start
Type: AGI.Foundation.Time.JulianDate
The time of the first property to retrieve.
stop
Type: AGI.Foundation.Time.JulianDate
The time of the last property to retrieve.
maximumRecords
Type: System.Int32
The maximum number of each property to retrieve.
propertyNames
Type:System.String[]
The archived properties to retrieve.

Return Value

Type: RawEntityData<TEntity>
An instance of RawEntityData<TEntity> representing the requested data.
See Also