Click or drag to resize

GetFieldListOpts Enumeration

Options for use with GetFieldList(GetFieldListOpts).

Namespace:  NetQuarry.Data
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum GetFieldListOpts
Members
  Member nameValueDescription
IgnoreMobile1 Ignore any mobile-specific fields list even when rendering for mobile devices.
PreProcess4 Pre-process the list, if any, by forcing to lower case and wrapping the entire string in semi-colons. This allows for easily and reliably determining if the resulting list contains specified fields by using a test like if (list.Contains(";" + fld.Key.ToLowerInvariant() + ";") {}. This type of test ensures that a test for the field "name" will not find a match in a list containing the "last_name" since the search test will effectively be something like if (";first_name;last_name;".Contains(";name;")) {}
HiddenFields8 Instead of returning the list of fields identified to be shown, return the list of fields identified to be hidden. This is primarily based on the HiddenFields property.
See Also