SearchIndexerClient Constructors

Definition

Overloads

SearchIndexerClient()

Initializes a new instance of the SearchIndexerClient class for mocking.

SearchIndexerClient(Uri, AzureKeyCredential)

Initializes a new instance of the SearchIndexerClient class.

SearchIndexerClient(Uri, TokenCredential)

Initializes a new instance of the SearchIndexerClient class.

SearchIndexerClient(Uri, AzureKeyCredential, SearchClientOptions)

Initializes a new instance of the SearchIndexerClient class.

SearchIndexerClient(Uri, TokenCredential, SearchClientOptions)

Initializes a new instance of the SearchIndexerClient class.

SearchIndexerClient()

Source:
SearchIndexerClient.cs
Source:
SearchIndexerClient.cs

Initializes a new instance of the SearchIndexerClient class for mocking.

protected SearchIndexerClient ();
Protected Sub New ()

Applies to

SearchIndexerClient(Uri, AzureKeyCredential)

Source:
SearchIndexerClient.cs
Source:
SearchIndexerClient.cs

Initializes a new instance of the SearchIndexerClient class.

public SearchIndexerClient (Uri endpoint, Azure.AzureKeyCredential credential);
new Azure.Search.Documents.Indexes.SearchIndexerClient : Uri * Azure.AzureKeyCredential -> Azure.Search.Documents.Indexes.SearchIndexerClient
Public Sub New (endpoint As Uri, credential As AzureKeyCredential)

Parameters

endpoint
Uri

Required. The URI endpoint of the Search service. This is likely to be similar to "https://{search_service}.search.windows.net". The URI must use HTTPS.

credential
AzureKeyCredential

Required. The API key credential used to authenticate requests against the Search service. You need to use an admin key to perform any operations on the SearchIndexerClient. See Create and manage api-keys for an Azure Cognitive Search service for more information about API keys in Azure Cognitive Search.

Exceptions

Thrown when the endpoint or credential is null.

Thrown when the endpoint is not using HTTPS.

Applies to

SearchIndexerClient(Uri, TokenCredential)

Source:
SearchIndexerClient.cs
Source:
SearchIndexerClient.cs

Initializes a new instance of the SearchIndexerClient class.

public SearchIndexerClient (Uri endpoint, Azure.Core.TokenCredential tokenCredential);
new Azure.Search.Documents.Indexes.SearchIndexerClient : Uri * Azure.Core.TokenCredential -> Azure.Search.Documents.Indexes.SearchIndexerClient
Public Sub New (endpoint As Uri, tokenCredential As TokenCredential)

Parameters

endpoint
Uri

Required. The URI endpoint of the Search service. This is likely to be similar to "https://{search_service}.search.windows.net". The URI must use HTTPS.

tokenCredential
TokenCredential

Required.The token credential used to authenticate requests against the Search service. See Use role-based authorization in Azure Cognitive Search for more information about role-based authorization in Azure Cognitive Search.

Exceptions

Thrown when the endpoint or tokenCredential is null.

Thrown when the endpoint is not using HTTPS.

Applies to

SearchIndexerClient(Uri, AzureKeyCredential, SearchClientOptions)

Source:
SearchIndexerClient.cs
Source:
SearchIndexerClient.cs

Initializes a new instance of the SearchIndexerClient class.

public SearchIndexerClient (Uri endpoint, Azure.AzureKeyCredential credential, Azure.Search.Documents.SearchClientOptions options);
new Azure.Search.Documents.Indexes.SearchIndexerClient : Uri * Azure.AzureKeyCredential * Azure.Search.Documents.SearchClientOptions -> Azure.Search.Documents.Indexes.SearchIndexerClient
Public Sub New (endpoint As Uri, credential As AzureKeyCredential, options As SearchClientOptions)

Parameters

endpoint
Uri

Required. The URI endpoint of the Search service. This is likely to be similar to "https://{search_service}.search.windows.net". The URI must use HTTPS.

credential
AzureKeyCredential

Required. The API key credential used to authenticate requests against the Search service. You need to use an admin key to perform any operations on the SearchIndexerClient. See Create and manage api-keys for an Azure Cognitive Search service for more information about API keys in Azure Cognitive Search.

options
SearchClientOptions

Client configuration options for connecting to Azure Cognitive Search.

Exceptions

Thrown when the endpoint or credential is null.

Thrown when the endpoint is not using HTTPS.

Applies to

SearchIndexerClient(Uri, TokenCredential, SearchClientOptions)

Source:
SearchIndexerClient.cs
Source:
SearchIndexerClient.cs

Initializes a new instance of the SearchIndexerClient class.

public SearchIndexerClient (Uri endpoint, Azure.Core.TokenCredential tokenCredential, Azure.Search.Documents.SearchClientOptions options);
new Azure.Search.Documents.Indexes.SearchIndexerClient : Uri * Azure.Core.TokenCredential * Azure.Search.Documents.SearchClientOptions -> Azure.Search.Documents.Indexes.SearchIndexerClient
Public Sub New (endpoint As Uri, tokenCredential As TokenCredential, options As SearchClientOptions)

Parameters

endpoint
Uri

Required. The URI endpoint of the Search service. This is likely to be similar to "https://{search_service}.search.windows.net". The URI must use HTTPS.

tokenCredential
TokenCredential

Required. The token credential used to authenticate requests against the Search service. See Use role-based authorization in Azure Cognitive Search for more information about role-based authorization in Azure Cognitive Search.

options
SearchClientOptions

Client configuration options for connecting to Azure Cognitive Search.

Exceptions

Thrown when the endpoint or tokenCredential is null.

Thrown when the endpoint is not using HTTPS.

Applies to