1 write to TokenType
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthTokenResponse.cs (1)
23TokenType = root.GetString("token_type");
3 references to TokenType
Microsoft.AspNetCore.Authentication.OAuth (3)
Events\OAuthCreatingTicketContext.cs (1)
68public string? TokenType => TokenResponse.TokenType;
OAuthHandler.cs (2)
158if (!string.IsNullOrEmpty(tokens.TokenType)) 160authTokens.Add(new AuthenticationToken { Name = "token_type", Value = tokens.TokenType });