Close
dtSearch .NET Standard API 2023.02
IndexJob.EnumerableFields Property

A set of fields to be stored in the index for each document in a way that lets them be enumerated by WordListBuilder.ListFieldValues

public List<string> EnumerableFields;

When a field is listed in EnumerableFields, all of the values of that field are stored in the index in a way that permits the values to be enumerated using WordListBuilder.ListFieldValues. The field names in the list can contain wildcards (* and ?). A set containing a single entry "*" would match all fields. 

The maximum amount of text that can be stored in each stored field is the lesser of the MaxStoredFieldSize option setting or 127 characters, including the field name. 

All enumerable fields are also automatically designated as stored fields (see StoredFields). 

See also: 

WordListBuilder.ListFieldValues Method