Associating string indexes with unindexable string lists

Unindexable string lists are reference lists that contain strings that you want ignored during the indexing process.

To associate a string index with an unindexable string list:

,
  1. In the Index Definition document, under the <stringindex> element, add a <stringindexproperties> element to hold the properties of the index.
  2. Under <stringindexproperties> add an <unindexablestrings> element, which represents one reference list. Specify the name of the reference list as value to the NAME attribute.
    <index NAME="MyStringIndex"> 
       <stringindex> 
          <stringindexproperties> 
             <unindexablestrings NAME = "Days of Week"/> 
          </stringindexproperties> 
          <elements> 
             (…) 
          </elements> 
       </stringindex> 
    </index>