5 writes to Value
Microsoft.AspNetCore.Authentication.Abstractions (1)
TokenExtensions.cs (1)
108tokens.Add(new AuthenticationToken { Name = name, Value = token });
Microsoft.AspNetCore.Authentication.OAuth (4)
OAuthHandler.cs (4)
152authTokens.Add(new AuthenticationToken { Name = "access_token", Value = tokens.AccessToken }); 155authTokens.Add(new AuthenticationToken { Name = "refresh_token", Value = tokens.RefreshToken }); 160authTokens.Add(new AuthenticationToken { Name = "token_type", Value = tokens.TokenType }); 174Value = expiresAt.ToString("o", CultureInfo.InvariantCulture)
2 references to Value
Microsoft.AspNetCore.Authentication.Abstractions (1)
TokenExtensions.cs (1)
44properties.Items[TokenKeyPrefix + token.Name] = token.Value;
Microsoft.AspNetCore.Identity (1)
SignInManager.cs (1)
1142var result = await UserManager.SetAuthenticationTokenAsync(user, externalLogin.LoginProvider, token.Name, token.Value);