Archive.unarchiveString

Unarchives the string associated with the given 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);
auto str = archive.unarchiveString(0);

Meta