Archive.unarchiveShort

Unarchives the value associated with the given key.

  1. short unarchiveShort(string key, Id id)
    interface Archive
    short
    unarchiveShort
    (
    string key
    ,
    out Id id
    )
  2. short unarchiveShort(Id id)

Parameters

key string

the key associated with the value

Return Value

Type: short

the unarchived value

Examples

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

Meta