Hi Folks,
I want to be able to retrieve the entire version stack of a document using DFS and .NET. I've tried the below code but it only returns the CURRENT version.
If it's not possible using DFS then could you provide a DQL query and code sample?I'm using developer edition 6.5 sp1Dim objIdSet As ObjectIdentitySet = New ObjectIdentitySet()objIdSet.Identities.Add(objectIdentity)Dim vInfo As List(Of VersionInfo) = mobjVersionControlService.GetVersionInfo(objIdSet)For Each versionInfo As VersionInfo In vInfoConsole.WriteLine(versionInfo.Version)NextThanks