TrackingArchiveTEntityGetArchivedData Method (JulianDate, JulianDate, Int32, String) |
Retrieves archived properties for all entities over the provided time period.
Namespace:
AGI.Foundation.Tracking
Assembly:
AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public RawEntityData<TEntity> GetArchivedData(
JulianDate start,
JulianDate stop,
int maximumRecords,
params string[] propertyNames
)
Public Function GetArchivedData (
start As JulianDate,
stop As JulianDate,
maximumRecords As Integer,
ParamArray propertyNames As String()
) As RawEntityData(Of TEntity)
public:
RawEntityData<TEntity>^ GetArchivedData(
JulianDate start,
JulianDate stop,
int maximumRecords,
... array<String^>^ propertyNames
)
member GetArchivedData :
start : JulianDate *
stop : JulianDate *
maximumRecords : int *
propertyNames : string[] -> RawEntityData<'TEntity>
Parameters
- start
- Type: AGI.Foundation.TimeJulianDate
The time of the first property to retrieve. - stop
- Type: AGI.Foundation.TimeJulianDate
The time of the last property to retrieve. - maximumRecords
- Type: SystemInt32
The maximum number of each property to retrieve. - propertyNames
- Type: SystemString
The archived properties to retrieve.
Return Value
Type:
RawEntityDataTEntityAn instance of
RawEntityDataTEntity representing the requested data.
See Also