12345

1234567899810

@dtkhandare,

Please try using the following code to determine revision type, revision Node and the Section this revision belongs to:

foreach (Revision rev in doc.Revisions)
{
    Console.WriteLine(rev.RevisionType);
    Node node = rev.ParentNode;
    Section sec = (Section)node.GetAncestor(NodeType.Section);
}