Hi,
I have a quick question: how can I access the archive tables or archival information of a Feature Service from .NET?
If there is an alternative approach to retrieving the same information, I would be very interested in learning more about it.
Best regards,
Jens Christiansen
Hi @pocalipse ,
You can refer to Work with the archive class—ArcGIS Pro | Documentation and https://github.com/ArcGIS/arcgis-pro-sdk/wiki/ProConcepts-Geodatabase#archiving-and-historical-versi....
You can confirm that Archiving is enabled using Table.IsArchiveEnabled() on the table property of the FeatureLayer and then use Table.GetArchiveTable() to get the archive table itself (it will raise an exception if archiving is not enabled on that Layer - see GetArchiveTable Method (Table)—ArcGIS Pro). You can then query it using a QueryFilter.