TokenRefresher Delegate

Definition

Defines a delegate used to retrieve updated tokens.

public delegate System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.AuthenticationToken> TokenRefresher(AuthenticationToken expiredAuthenticationToken);
type TokenRefresher = delegate of AuthenticationToken -> Task<AuthenticationToken>
Public Delegate Function TokenRefresher(expiredAuthenticationToken As AuthenticationToken) As Task(Of AuthenticationToken) 

Parameters

expiredAuthenticationToken
AuthenticationToken

The authentication token which has expired.

Return Value

A delegate used to retrieve updated tokens.

Applies to