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)
Syntaxpublic RawEntityData<TEntity> GetArchivedData(
Object entityIdentifier,
JulianDate start,
JulianDate stop,
int maximumRecords,
params string[] propertyNames
)
Public Function GetArchivedData (
entityIdentifier As Object,
start As JulianDate,
stop As JulianDate,
maximumRecords As Integer,
ParamArray propertyNames As String()
) As RawEntityData(Of TEntity)
public:
RawEntityData<TEntity>^ GetArchivedData(
Object^ entityIdentifier,
JulianDate start,
JulianDate stop,
int maximumRecords,
... array<String^>^ propertyNames
)
member GetArchivedData :
entityIdentifier : Object *
start : JulianDate *
stop : JulianDate *
maximumRecords : int *
propertyNames : string[] -> RawEntityData<'TEntity>
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