How to revert a changeset using RTC API
One answer
Take a look at IWorkspaceConnection.IConfigurationOpFactory to get a revert op. You have to give it the IVersionableHandle that has the state ID you want to revert to. You can get the state that you want from a change set that has the content that you want to revert to. When you run commit on the op, it will take the given change set and check-in the changes to perform the revert. Then you can deliver the change set.
Comments
Martin Dam Pedersen
Apr 03 '13, 2:17 a.m.Hi,