Class EbicsPasswordInfo
Collects the information required to query for a security media password.
Inheritance
System.Object
EbicsPasswordInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
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 |
---|---|
System.Boolean |
Heading
The main instruction heading to be displayed when prompting for the password.
Declaration
public string Heading { get; set; }
Property Value
Type | Description |
---|---|
System.String |
MaxLength
The maximum length of an acceptable password.
Declaration
public int MaxLength { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | 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 |
---|---|
System.Int32 |
PasswordLabel
The label to be displayed in front of the password entry text box.
Declaration
public string PasswordLabel { get; set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.String |