Enum PasswordBoxMonitor.MonitorLevel
Defines the different password monitoring levels.
Namespace: TheXDS.MCART.Component
Assembly: MCART.Wpf.Common.dll
Syntax
[Flags]
public enum PasswordBoxMonitor.MonitorLevel : byte
Fields
| Name | Description |
|---|---|
| All | Secure password, plain-text password, and password length. |
| Length | Password length only. Only the PasswordLengthProperty is exposed. |
| None | None. The PasswordBox will not be monitored. |
| Password | Plain-text password. Monitors the PasswordBox's plain-text password content. |
| PasswordAndLength | Plain-text password and password length. |
| SecurePassword | Secure password. Monitors the PasswordBox's secure password content. |
| SecurePasswordAndLength | Secure password and password length. |
| SecurePasswordAndPassword | Secure password and plain-text password. |