Archive.unarchiveUlong

Unarchives the value associated with the given key.

  1. ulong unarchiveUlong(string key)
    interface Archive
    ulong
    unarchiveUlong
    (
    string key
    )
  2. ulong unarchiveUlong(Id id)

Parameters

key string

the key associated with the value

Return Value

Type: ulong

the unarchived value

Examples

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

Meta