XmlArchive.unarchiveUint

Unarchives the value associated with the given key.

  1. uint unarchiveUint(string key, Id id)
    class XmlArchive(U = char)
    uint
    unarchiveUint
    (
    string key
    ,
    out Id id
    )
  2. uint unarchiveUint(Id id)

Parameters

key string

the key associated with the value

Return Value

Type: uint

the unarchived value

Examples

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

Meta