Class NormalizersDescriptor
Inheritance
NormalizersDescriptor
Assembly: OpenSearch.Client.dll
Syntax
public class NormalizersDescriptor : IsADictionaryDescriptorBase<NormalizersDescriptor, INormalizers, string, INormalizer>, IDescriptor, IPromise<INormalizers>
Constructors
|
Edit this page
View Source
NormalizersDescriptor()
Declaration
public NormalizersDescriptor()
Methods
|
Edit this page
View Source
Custom(string, Func<CustomNormalizerDescriptor, ICustomNormalizer>)
OpenSearch does not ship with built-in normalizers so far, so the only way to
get one is by building a custom one. Custom normalizers take a list of char character
filters and a list of token filters.
Declaration
public NormalizersDescriptor Custom(string name, Func<CustomNormalizerDescriptor, ICustomNormalizer> selector)
Parameters
Returns
|
Edit this page
View Source
UserDefined(string, INormalizer)
Declaration
public NormalizersDescriptor UserDefined(string name, INormalizer analyzer)
Parameters
Returns
Implements
Extension Methods