the key associated with the object
the id associated with the object
the unarchived object
a callback the performs the unarchiving of the individual fields
class Foo { int a; } auto archive = new XmlArchive!(); archive.beginUnarchiving(data); Id id; Object o; archive.unarchiveObject("foo", id, o, { // unarchive the fields of Foo }); auto foo = cast(Foo) o;
Unarchives the object associated with the given key.