Archive.unarchiveWstring

Unarchives the string associated with the given id.

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

Parameters

id Id

the id associated with the string

Return Value

Type: wstring

the unarchived string

Examples

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

Meta