XmlArchive.unarchiveUshort

Unarchives the value associated with the given id.

  1. ushort unarchiveUshort(string key)
  2. ushort unarchiveUshort(Id id)
    class XmlArchive(U = char)
    ushort
    unarchiveUshort
    (
    Id id
    )

Parameters

id Id

the id associated with the value

Return Value

Type: ushort

the unarchived value

Examples

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

Meta