Click or drag to resize

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
Members
  Member nameValueDescription
DOMAccessed8388608This field is accessed in the browser client-side Document Object Model (DOM) and should be rendered accordingly.
DOMModified16777216This field's value is modified in the browser client-side Document Object Model (DOM) and should be rendered accordingly.
ClientValidateWhenLocked1Normally no client-side validation is performed on locked fields. Set this attribute to force client-side validation.
ClientValidateOnlyWhenVisible2Normally 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.
SecureAudit4 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