SearchIndexClient.CreateSynonymMapAsync Method

Definition

Overloads

Name Description
CreateSynonymMapAsync(SynonymMap, CancellationToken)

Creates a new synonym map.

CreateSynonymMapAsync(RequestContent, RequestContext)

[Protocol Method] Creates a new synonym map.

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

CreateSynonymMapAsync(SynonymMap, CancellationToken)

Source:
SearchIndexClient.cs
Source:
SearchIndexClient.cs

Creates a new synonym map.

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Search.Documents.Indexes.Models.SynonymMap>> CreateSynonymMapAsync(Azure.Search.Documents.Indexes.Models.SynonymMap synonymMap, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateSynonymMapAsync : Azure.Search.Documents.Indexes.Models.SynonymMap * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Search.Documents.Indexes.Models.SynonymMap>>
override this.CreateSynonymMapAsync : Azure.Search.Documents.Indexes.Models.SynonymMap * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Search.Documents.Indexes.Models.SynonymMap>>
Public Overridable Function CreateSynonymMapAsync (synonymMap As SynonymMap, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of SynonymMap))

Parameters

synonymMap
SynonymMap

The definition of the synonym map to create.

cancellationToken
CancellationToken

The cancellation token that can be used to cancel the operation.

Returns

The Response<T> from the server containing the SynonymMap that was created. This may differ slightly from what was passed in since the service may return back properties set to their default values.

Exceptions

synonymMap is null.

Service returned a non-success status code.

Applies to

CreateSynonymMapAsync(RequestContent, RequestContext)

Source:
SearchIndexClient.cs
Source:
SearchIndexClient.cs

[Protocol Method] Creates a new synonym map.

  • 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> CreateSynonymMapAsync(Azure.Core.RequestContent content, Azure.RequestContext context = default);
abstract member CreateSynonymMapAsync : Azure.Core.RequestContent * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.CreateSynonymMapAsync : Azure.Core.RequestContent * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function CreateSynonymMapAsync (content As RequestContent, Optional context As RequestContext = Nothing) As Task(Of Response)

Parameters

content
RequestContent

The content to send as the body of the request.

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

content is null.

Service returned a non-success status code.

Applies to