Enum FinCredentialFlags
Selects options for the getting security credentials such as PIN or TAN from the user.
[Flags]
public enum FinCredentialFlags
Fields
Input = 16If set, then a generic input field will be presented. The generic input field is the upper field of the two possible input fields.
InputMask = 64If set, then the generic input field will be masked with a bullet character and its entry will be invisible.
InputNumeric = 128If set indicates that a numeric digity only input (real PIN or TAN) is expected in the generic input field.
None = 0No option selected. If no option is selected, then no input text boxes will appear and the credential dialog acts as a prompt only.
RepeatInput = 1If set, then the content of both input fields must match exactly before the user can close the dialog. This should be used when asking for an initial PIN.
SaveOption = 2If set, then a "save password" option will be shown at the bottom.
SaveOptionChecked = 4If set, then the SaveOption check box is checked. Otherwise it is unchecked.
Secret = 256If set, then a secret input field will be presented. The secret input field is the lower field of the two possible input/output fields.
SecretMask = 1024If set, then the secret input field will be masked with a bullet character and thus its entry will be invisible.
SecretNumeric = 2048If set indicates that a numeric digity only input (real PIN or TAN) is expected in the secret input field.