XmlArchive.unarchiveUbyte

Unarchives the value associated with the given key.

  1. ubyte unarchiveUbyte(string key)
    class XmlArchive(U = char)
    ubyte
    unarchiveUbyte
    (
    string key
    )
  2. ubyte unarchiveUbyte(Id id)

Parameters

key string

the key associated with the value

Return Value

Type: ubyte

the unarchived value

Examples

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

Meta