Edit

Share via


BuildHttpClientBase.DeleteBuildTagAsync Method

Definition

Overloads

DeleteBuildTagAsync(Guid, Int32, String, Object, CancellationToken)

[Preview API] Removes a tag from a build.

DeleteBuildTagAsync(String, Int32, String, Object, CancellationToken)

[Preview API] Removes a tag from a build.

DeleteBuildTagAsync(Guid, Int32, String, Object, CancellationToken)

[Preview API] Removes a tag from a build.

public virtual System.Threading.Tasks.Task<System.Collections.Generic.List<string>> DeleteBuildTagAsync (Guid project, int buildId, string tag, object userState = null, System.Threading.CancellationToken cancellationToken = null);
abstract member DeleteBuildTagAsync : Guid * int * string * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.List<string>>
override this.DeleteBuildTagAsync : Guid * int * string * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.List<string>>

Parameters

project
Guid

Project ID

buildId
Int32

The ID of the build.

tag
String

The tag to remove.

userState
Object
cancellationToken
CancellationToken

The cancellation token to cancel operation.

Returns

Applies to

DeleteBuildTagAsync(String, Int32, String, Object, CancellationToken)

[Preview API] Removes a tag from a build.

public virtual System.Threading.Tasks.Task<System.Collections.Generic.List<string>> DeleteBuildTagAsync (string project, int buildId, string tag, object userState = null, System.Threading.CancellationToken cancellationToken = null);
abstract member DeleteBuildTagAsync : string * int * string * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.List<string>>
override this.DeleteBuildTagAsync : string * int * string * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.List<string>>

Parameters

project
String

Project ID or project name

buildId
Int32

The ID of the build.

tag
String

The tag to remove.

userState
Object
cancellationToken
CancellationToken

The cancellation token to cancel operation.

Returns

Applies to