I am using ABCpdf, and simply cannot obtain the title or author of a document programmatically. Cannot seem to find any good examples on WebSupergoo's site! Must be a simple issue.
Doc d = new Doc();
d.Read(path);
var y = d.GetInfo(d.Root, "/Title:Text");
var x = d.GetInfo(d.Root, "/publicfilePath:Text");