Archive.unarchiveLong

Unarchives the value associated with the given id.

  1. long unarchiveLong(string key)
  2. long unarchiveLong(Id id)
    interface Archive
    long
    unarchiveLong
    ()

Parameters

id Id

the id associated with the value

Return Value

Type: long

the unarchived value

Examples

auto archive = new XmlArchive!();
archive.beginUnarchiving(data);
auto foo = unarchiveBool(0);

Meta