Retrieves a binary object from the vault.
public byte[] GetValue(string sName)
Returns a binary data value, associated with the specified name, from the vault.
try
{
vault.Unlock("password", "salt");
byte[] retrievedvalue = vault.GetValue("testValue");
}
catch (DataVaultException e)
{
Console.WriteLine("Exception: " + e.ToString());
}
finally
{
vault.Lock();
}