Archive.unarchiveString

Unarchives the string associated with the given id.

  1. string unarchiveString(Id id)
    interface Archive
    string
    unarchiveString
    ()
  2. string unarchiveString(string key, Id id)

Parameters

id Id

the id associated with the string

Return Value

Type: string

the unarchived string

Examples

auto archive = new XmlArchive!();
archive.beginUnarchiving(data);
auto str = archive.unarchiveString(0);

Meta