Delen via


AzurePipelinesCredential.GetTokenAsync Method

Definition

Obtains an access token from within an Azure Pipelines environment.

public override System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> GetTokenAsync (Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken);
override this.GetTokenAsync : Azure.Core.TokenRequestContext * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<Azure.Core.AccessToken>
Public Overrides Function GetTokenAsync (requestContext As TokenRequestContext, cancellationToken As CancellationToken) As ValueTask(Of AccessToken)

Parameters

requestContext
TokenRequestContext

The details of the authentication request.

cancellationToken
CancellationToken

A CancellationToken controlling the request lifetime.

Returns

An AccessToken which can be used to authenticate service client calls.

Exceptions

Thrown when the authentication failed.

Remarks

Caching and management of the lifespan for the AccessToken is considered the responsibility of the caller: each call should request a fresh token being requested.

Applies to