13 writes to Name
Microsoft.AspNetCore.Authentication.Abstractions (1)
TokenExtensions.cs (1)
108tokens.Add(new AuthenticationToken { Name = name, Value = token });
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerHandler.cs (1)
172new AuthenticationToken { Name = "access_token", 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 }); 173Name = "expires_at",
Microsoft.AspNetCore.Authentication.OpenIdConnect (5)
OpenIdConnectHandler.cs (5)
1121tokens.Add(new AuthenticationToken { Name = OpenIdConnectParameterNames.AccessToken, Value = message.AccessToken }); 1126tokens.Add(new AuthenticationToken { Name = OpenIdConnectParameterNames.IdToken, Value = message.IdToken }); 1131tokens.Add(new AuthenticationToken { Name = OpenIdConnectParameterNames.RefreshToken, Value = message.RefreshToken }); 1136tokens.Add(new AuthenticationToken { Name = OpenIdConnectParameterNames.TokenType, Value = message.TokenType }); 1146tokens.Add(new AuthenticationToken { Name = "expires_at", Value = expiresAt.ToString("o", CultureInfo.InvariantCulture) });
Microsoft.AspNetCore.Authentication.Twitter (2)
TwitterHandler.cs (2)
131new AuthenticationToken { Name = "access_token", Value = accessToken.Token }, 132new AuthenticationToken { Name = "access_token_secret", Value = accessToken.TokenSecret }
5 references to Name
Microsoft.AspNetCore.Authentication.Abstractions (4)
TokenExtensions.cs (4)
30properties.Items.Remove(TokenKeyPrefix + t.Name); 37if (token.Name is null) 43tokenNames.Add(token.Name); 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);