SearchIndex Constructors

Definition

Overloads

SearchIndex(String)

Initializes a new instance of the SearchIndex class.

SearchIndex(String, IEnumerable<SearchField>)

Initializes a new instance of the SearchIndex class.

SearchIndex(String)

Source:
SearchIndex.cs
Source:
SearchIndex.cs

Initializes a new instance of the SearchIndex class.

public SearchIndex (string name);
new Azure.Search.Documents.Indexes.Models.SearchIndex : string -> Azure.Search.Documents.Indexes.Models.SearchIndex
Public Sub New (name As String)

Parameters

name
String

The name of the index.

Exceptions

name is an empty string.

name is null.

Applies to

SearchIndex(String, IEnumerable<SearchField>)

Source:
SearchIndex.cs
Source:
SearchIndex.cs

Initializes a new instance of the SearchIndex class.

public SearchIndex (string name, System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.SearchField> fields);
new Azure.Search.Documents.Indexes.Models.SearchIndex : string * seq<Azure.Search.Documents.Indexes.Models.SearchField> -> Azure.Search.Documents.Indexes.Models.SearchIndex
Public Sub New (name As String, fields As IEnumerable(Of SearchField))

Parameters

name
String

The name of the index.

fields
IEnumerable<SearchField>

Fields to add to the index.

Exceptions

name is an empty string.

name or fields is null.

Applies to