We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cca7529 commit 96fb3b6Copy full SHA for 96fb3b6
TodoListService-ManualJwt/Global.asax.cs
@@ -143,7 +143,8 @@ protected async override Task<HttpResponseMessage> SendAsync(HttpRequestMessage
143
try
144
{
145
// Validate token.
146
- var claimsPrincipal = _tokenValidator.ValidateToken(request.Headers.Authorization.Parameter, validationParameters, out SecurityToken _);
+ SecurityToken securityToken;
147
+ var claimsPrincipal = _tokenValidator.ValidateToken(request.Headers.Authorization.Parameter, validationParameters, out securityToken);
148
149
#pragma warning disable 1998
150
// This check is required to ensure that the Web API only accepts tokens from tenants where it has been consented to and provisioned.
0 commit comments