Tests whether the specified vault exists.
public static bool VaultExists(string sDataVaultID)
VaultExists can return the following values:
Returns |
Indicates |
|---|---|
true |
The vault exists. |
false |
The vault does not exist. |
if (DataVault.VaultExists("myVault"))
{
DataVault.DeleteVault("myVault");
}