AppSetting.IsPassword Property |
Gets a value indicating whether the value of the setting should receive special treatment because it is a password. See remarks.
Namespace:
Dundas.BI.Configuration
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntaxpublic bool IsPassword { get; }
Public ReadOnly Property IsPassword As Boolean
Get
public:
property bool IsPassword {
bool get ();
}
member IsPassword : bool with get
Property Value
Type:
Boolean
Remarks
This property does not change how the value of the setting is handled at the framework level. Rather, it acts as a hint to higher levels.
If the value of this property is
true, it hints that the value should be treated with the standard conventions for dealing
with password data. For instance:
- The API should not expose the password value to the UI unless specifically requested.
- The password value should never be displayed in plain text.
Note |
---|
Password properties typically should also be encrypted, using IsEncrypted. |
See Also