我收到 Klocwork 错误,
在第 101 行调用函数“GetTokenResponseAsync”返回的引用“this.GetTokenResponseAsync(cancellationToken)”可能为空,并将在第 101 行取消引用
这是代码,
public async Task<SecurityToken> AcquireTokenAsync(CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
var tokenResponse = await GetTokenResponseAsync(cancellationToken).ConfigureAwait(false);
return tokenResponse;
}
这意味着tokenResponse
可以为空吗?如何解决这个问题?