XmlArchive.unarchiveString

Unarchives the string associated with the given key.

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

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

Meta