Gets or sets a value indicating whether to suppress encryption errors.
Namespace: CleanCode.DatabaseControlsAssembly: CleanCode.DatabaseControls (in CleanCode.DatabaseControls.dll) Version: 1.2.3.0 (1.2.03)
public bool SuppressEncryptionErrors { get; set; }
public bool SuppressEncryptionErrors { get; set; }
Public Property SuppressEncryptionErrors As Boolean
Get
Set
Public Property SuppressEncryptionErrors As Boolean
Get
Set
public:
property bool SuppressEncryptionErrors {
bool get ();
void set (bool value);
}
public:
property bool SuppressEncryptionErrors {
bool get ();
void set (bool value);
}
Field Value
true to suppress encryption errors; otherwise,
false.
Set to false by default, each time there is an encryption or decryption error
(which could occur when handling a password) a pop-up warning is displayed.
When loading or storing a set of connections this would be annoying to the user
so it may be suppressed here.
The errors are then collected and may be accessed via
the
EncryptionErrors property to present the list to the user all at once.
The
EncryptionErrors collection is emptied when
SuppressEncryptionErrors is set to
true.