Archive.unarchiveDstring

Unarchives the string associated with the given key.

  1. dstring unarchiveDstring(Id id)
  2. dstring unarchiveDstring(string key, Id id)
    interface Archive
    dstring
    unarchiveDstring
    (
    string key
    ,
    out Id id
    )
  3. string unarchiveString(string key, Id id)
  4. wstring unarchiveWstring(string key, 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