TokenRefresher Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.