CDBWrapper::Read

Reads and de-obfuscates the value stored under the given key.

Synopsis

Declared in <dbwrapper.h>

template<
    typename K,
    typename V>
bool
Read(
    K const& key,
    V& value) const;

Return Value

True if the key was found and read, false otherwise.

Parameters

NameDescription
keyThe key to look up.
valueSet to the deserialized value on success.