NEST by Elastic and contributors

<PackageReference Include="NEST" Version="7.5.0" />

.NET API 4,381,696 bytes

 SearchAsYouTypePropertyDescriptor<T>

public SearchAsYouTypePropertyDescriptor<T> Analyzer(string analyzer)

The analyzer which should be used for analyzed string fields, both at index-time and at search-time (unless overridden by the search_analyzer). Defaults to the default index analyzer, or the standard analyzer.

public SearchAsYouTypePropertyDescriptor<T> Index(bool? index = true)

Should the field be searchable? Accepts true (default) or false.

What information should be stored in the index, for search and highlighting purposes. Defaults to Positions.

public SearchAsYouTypePropertyDescriptor<T> MaxShingleSize(int? maxShingleSize)

The largest shingle size to index the input with and create subfields for.

public SearchAsYouTypePropertyDescriptor<T> Norms(bool? enabled = true)

Whether field-length should be taken into account when scoring queries. Accepts true or false. This option configures the root field and shingle subfields, where its default is true. It does not configure the prefix subfield, where it it false.

public SearchAsYouTypePropertyDescriptor<T> SearchAnalyzer(string searchAnalyzer)

The analyzer that should be used at search time on analyzed fields. Defaults to the analyzer setting.

public SearchAsYouTypePropertyDescriptor<T> SearchQuoteAnalyzer(string searchQuoteAnalyzer)

The analyzer that should be used at search time when a phrase is encountered. Defaults to the search_analyzer setting.

Whether term vectors should be stored for an analyzed field. Defaults to no. This option configures the root field and shingle subfields, but not the prefix subfield.