SearchIndexerClient.DeleteSkillset Method

Definition

Overloads

DeleteSkillset(String, CancellationToken)

Deletes a skillset.

DeleteSkillset(SearchIndexerSkillset, Boolean, CancellationToken)

Deletes a skillset.

DeleteSkillset(String, CancellationToken)

Source:
SearchIndexerClient.SkillSets.cs
Source:
SearchIndexerClient.SkillSets.cs

Deletes a skillset.

public virtual Azure.Response DeleteSkillset (string skillsetName, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteSkillset : string * System.Threading.CancellationToken -> Azure.Response
override this.DeleteSkillset : string * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function DeleteSkillset (skillsetName As String, Optional cancellationToken As CancellationToken = Nothing) As Response

Parameters

skillsetName
String

The name of the SearchIndexerSkillset to delete.

cancellationToken
CancellationToken

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

Returns

The Response from the server.

Exceptions

Thrown when skillsetName is null.

Thrown when a failure is returned by the Search service.

Applies to

DeleteSkillset(SearchIndexerSkillset, Boolean, CancellationToken)

Source:
SearchIndexerClient.SkillSets.cs
Source:
SearchIndexerClient.SkillSets.cs

Deletes a skillset.

public virtual Azure.Response DeleteSkillset (Azure.Search.Documents.Indexes.Models.SearchIndexerSkillset skillset, bool onlyIfUnchanged = false, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteSkillset : Azure.Search.Documents.Indexes.Models.SearchIndexerSkillset * bool * System.Threading.CancellationToken -> Azure.Response
override this.DeleteSkillset : Azure.Search.Documents.Indexes.Models.SearchIndexerSkillset * bool * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function DeleteSkillset (skillset As SearchIndexerSkillset, Optional onlyIfUnchanged As Boolean = false, Optional cancellationToken As CancellationToken = Nothing) As Response

Parameters

onlyIfUnchanged
Boolean

True to throw a RequestFailedException if the ETag does not match the current service version; otherwise, the current service version will be overwritten.

cancellationToken
CancellationToken

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

Returns

The Response from the server.

Exceptions

Thrown when skillset is null.

Thrown when a failure is returned by the Search service.

Applies to