SearchIndexerClient.RunIndexerAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| RunIndexerAsync(String, RequestContext) |
[Protocol Method] Runs an indexer on-demand.
|
| RunIndexerAsync(String, CancellationToken) |
Runs an indexer on-demand. |
RunIndexerAsync(String, RequestContext)
- Source:
- SearchIndexerClient.cs
[Protocol Method] Runs an indexer on-demand.
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.Threading.Tasks.Task<Azure.Response> RunIndexerAsync(string indexerName, Azure.RequestContext context);
abstract member RunIndexerAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.RunIndexerAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function RunIndexerAsync (indexerName As String, context As RequestContext) As Task(Of Response)
Parameters
- indexerName
- String
The name of the indexer.
- 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
indexerName is null.
indexerName is an empty string, and was expected to be non-empty.
Service returned a non-success status code.
Applies to
RunIndexerAsync(String, CancellationToken)
- Source:
- SearchIndexerClient.cs
- Source:
- SearchIndexerClient.cs
Runs an indexer on-demand.
public virtual System.Threading.Tasks.Task<Azure.Response> RunIndexerAsync(string indexerName, System.Threading.CancellationToken cancellationToken = default);
abstract member RunIndexerAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.RunIndexerAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function RunIndexerAsync (indexerName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)
Parameters
- indexerName
- String
The name of the indexer.
- cancellationToken
- CancellationToken
The cancellation token that can be used to cancel the operation.
Returns
The Response from the server.
Exceptions
indexerName is null.
indexerName is an empty string, and was expected to be non-empty.
Service returned a non-success status code.