1 write to RefreshToken
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthTokenResponse.cs (1)
24RefreshToken = root.GetString("refresh_token");
3 references to RefreshToken
Microsoft.AspNetCore.Authentication.OAuth (3)
Events\OAuthCreatingTicketContext.cs (1)
73public string? RefreshToken => TokenResponse.RefreshToken;
OAuthHandler.cs (2)
153if (!string.IsNullOrEmpty(tokens.RefreshToken)) 155authTokens.Add(new AuthenticationToken { Name = "refresh_token", Value = tokens.RefreshToken });