MappingCharFilter Constructors

Definition

Overloads

MappingCharFilter()

Initializes a new instance of the MappingCharFilter class.

MappingCharFilter(String, IList<String>)

Initializes a new instance of the MappingCharFilter class.

MappingCharFilter()

Source:
MappingCharFilter.cs

Initializes a new instance of the MappingCharFilter class.

public MappingCharFilter ();
Public Sub New ()

Applies to

MappingCharFilter(String, IList<String>)

Source:
MappingCharFilter.cs

Initializes a new instance of the MappingCharFilter class.

public MappingCharFilter (string name, System.Collections.Generic.IList<string> mappings);
new Microsoft.Azure.Search.Models.MappingCharFilter : string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Search.Models.MappingCharFilter
Public Sub New (name As String, mappings As IList(Of String))

Parameters

name
String

The name of the char filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters.

mappings
IList<String>

A list of mappings of the following format: "a=>b" (all occurrences of the character "a" will be replaced with character "b").

Applies to