Class EbicsPasswordInfo
Collects the information required to query for a security media password.
Inherited Members
Namespace: Subsembly.EBICS
Assembly: Subsembly.EBICS.Core.dll
Syntax
public sealed class EbicsPasswordInfo
Properties
DigitsOnly
If true
then the password may contain digits only.
Declaration
public bool DigitsOnly { get; set; }
Property Value
Type | Description |
---|---|
bool |
Heading
The main instruction heading to be displayed when prompting for the password.
Declaration
public string Heading { get; set; }
Property Value
Type | Description |
---|---|
string |
MaxLength
The maximum length of an acceptable password.
Declaration
public int MaxLength { get; set; }
Property Value
Type | Description |
---|---|
int | The default value is 256. Setting the value to zero will set the default value. |
MinLength
The minimum length of an acceptable password.
Declaration
public int MinLength { get; set; }
Property Value
Type | Description |
---|---|
int |
PasswordLabel
The label to be displayed in front of the password entry text box.
Declaration
public string PasswordLabel { get; set; }
Property Value
Type | Description |
---|---|
string |
Prompt
The main instruction body text to be displayed when prompting for the password.
Declaration
public string Prompt { get; set; }
Property Value
Type | Description |
---|---|
string |