Archive.unarchiveDstring

Unarchives the string associated with the given id.

  1. dstring unarchiveDstring(Id id)
    interface Archive
    dstring
    unarchiveDstring
    ()
  2. dstring unarchiveDstring(string key, Id id)
  3. string unarchiveString(Id id)
  4. wstring unarchiveWstring(Id id)

Parameters

id Id

the id associated with the string

Return Value

Type: dstring

the unarchived string

Examples

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

Meta