XmlArchive.unarchiveByte

Unarchives the value associated with the given key.

  1. byte unarchiveByte(string key)
    class XmlArchive(U = char)
    byte
    unarchiveByte
    (
    string key
    )
  2. byte unarchiveByte(Id id)

Parameters

key string

the key associated with the value

Return Value

Type: byte

the unarchived value

Examples

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

Meta