FieldSecurityAttrs Enumeration |
Security attributes for field-level, role-independent security configuration.
These attributes have the biggest impact, and are commonly used, in "strict" mode, see
IsStrictMode.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum FieldSecurityAttrs
<FlagsAttribute>
Public Enumeration FieldSecurityAttrs
Members
| Member name | Value | Description |
---|
| DOMAccessed | 8388608 | This field is accessed in the browser client-side Document Object Model (DOM) and should be rendered accordingly. |
| DOMModified | 16777216 | This field's value is modified in the browser client-side Document Object Model (DOM) and should be rendered accordingly. |
| ClientValidateWhenLocked | 1 | Normally no client-side validation is performed on locked fields. Set this attribute to force client-side validation. |
| ClientValidateOnlyWhenVisible | 2 | Normally client-side validation is performed on fields regardless of visibility. Set this attribute to skip client-side validation when the field is not visible to the user. |
| SecureAudit | 4 |
If audited, the audit should not include the value of this field, but only an indication of whether it has been set/changed/deleted.
This is similar to the audit treatment of SecureText and Password fields
and fields specified in the ReadableAudit extension's SecureFields list.
|
See Also