XmlArchive.unarchiveDstring

Unarchives the string associated with the given key.

  1. dstring unarchiveDstring(string key, Id id)
  2. dstring unarchiveDstring(Id id)
    class XmlArchive(U = char)
    dstring
    unarchiveDstring
    (
    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);

Id id;
auto str = archive.unarchiveString("str", id);

Meta