ОК, в конце концов, очень, очень просто.
Вот как я добавляю информацию
int theID = doc.AddObject("<< >>");
doc.SetInfo(-1, "/Info:Ref", theID.ToString());
publicPath = base.GetPublicSavePath(FilePrefix);
doc.SetInfo(theID, "/Title:Text", "here is where the title goes");
doc.SetInfo(theID, "/Author:Text", "WebSupergoo");
doc.SetInfo(theID, "/publicfilePath:Text", publicPath);
doc.Save(publicPath);
Вот как мне нужно ее получить
var a = d.GetInfo(-1, "/Info/publicfilePath");
var b = d.GetInfo(-1, "/Info/Title");