SearchIndexClient.GetIndexesAsync Method

Definition

Overloads

Name Description
GetIndexesAsync(RequestContext)

[Protocol Method] Lists all indexes available for a search service.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
GetIndexesAsync(CancellationToken)

Gets a list of all indexes.

GetIndexesAsync(RequestContext)

Source:
SearchIndexClient.cs

[Protocol Method] Lists all indexes available for a search service.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.AsyncPageable<BinaryData> GetIndexesAsync(Azure.RequestContext context);
abstract member GetIndexesAsync : Azure.RequestContext -> Azure.AsyncPageable<BinaryData>
override this.GetIndexesAsync : Azure.RequestContext -> Azure.AsyncPageable<BinaryData>
Public Overridable Function GetIndexesAsync (context As RequestContext) As AsyncPageable(Of BinaryData)

Parameters

context
RequestContext

The request options, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

Service returned a non-success status code.

Applies to

GetIndexesAsync(CancellationToken)

Source:
SearchIndexClient.cs
Source:
SearchIndexClient.cs

Gets a list of all indexes.

public virtual Azure.AsyncPageable<Azure.Search.Documents.Indexes.Models.SearchIndex> GetIndexesAsync(System.Threading.CancellationToken cancellationToken = default);
abstract member GetIndexesAsync : System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Search.Documents.Indexes.Models.SearchIndex>
override this.GetIndexesAsync : System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Search.Documents.Indexes.Models.SearchIndex>
Public Overridable Function GetIndexesAsync (Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of SearchIndex)

Parameters

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be canceled.

Returns

The Response<T> from the server containing a list of SearchIndex.

Exceptions

Thrown when a failure is returned by the Search service.

Applies to