Archive.unarchiveUshort

Unarchives the value associated with the given key.

  1. ushort unarchiveUshort(string key)
    interface Archive
    ushort
    unarchiveUshort
    (
    string key
    )
  2. ushort unarchiveUshort(Id id)

Parameters

key string

the key associated with the value

Return Value

Type: ushort

the unarchived value

Examples

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

Meta