5 writes to Name
Microsoft.AspNetCore.Authentication.Abstractions (1)
TokenExtensions.cs (1)
108
tokens.Add(new AuthenticationToken {
Name
= name, Value = token });
Microsoft.AspNetCore.Authentication.OAuth (4)
OAuthHandler.cs (4)
152
authTokens.Add(new AuthenticationToken {
Name
= "access_token", Value = tokens.AccessToken });
155
authTokens.Add(new AuthenticationToken {
Name
= "refresh_token", Value = tokens.RefreshToken });
160
authTokens.Add(new AuthenticationToken {
Name
= "token_type", Value = tokens.TokenType });
173
Name
= "expires_at",
5 references to Name
Microsoft.AspNetCore.Authentication.Abstractions (4)
TokenExtensions.cs (4)
30
properties.Items.Remove(TokenKeyPrefix + t.
Name
);
37
if (token.
Name
is null)
43
tokenNames.Add(token.
Name
);
44
properties.Items[TokenKeyPrefix + token.
Name
] = token.Value;
Microsoft.AspNetCore.Identity (1)
SignInManager.cs (1)
1142
var result = await UserManager.SetAuthenticationTokenAsync(user, externalLogin.LoginProvider, token.
Name
, token.Value);