CustomVisionTrainingClientExtensions.DeleteImageTagsAsync Method

Definition

Remove a set of tags from a set of images.

public static System.Threading.Tasks.Task DeleteImageTagsAsync (this Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.ICustomVisionTrainingClient operations, Guid projectId, System.Collections.Generic.IList<Guid> imageIds, System.Collections.Generic.IList<Guid> tagIds, System.Threading.CancellationToken cancellationToken = default);
static member DeleteImageTagsAsync : Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.ICustomVisionTrainingClient * Guid * System.Collections.Generic.IList<Guid> * System.Collections.Generic.IList<Guid> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function DeleteImageTagsAsync (operations As ICustomVisionTrainingClient, projectId As Guid, imageIds As IList(Of Guid), tagIds As IList(Of Guid), Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

operations
ICustomVisionTrainingClient

The operations group for this extension method.

projectId
Guid

The project id.

imageIds
IList<Guid>

Image ids. Limited to 64 images.

tagIds
IList<Guid>

Tags to be deleted from the specified images. Limited to 20 tags.

cancellationToken
CancellationToken

The cancellation token.

Returns

Applies to