9 references to CodeVerifierKey
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftAccountHandler.cs (1)
86
properties.Items.Add(OAuthConstants.
CodeVerifierKey
, codeVerifier);
Microsoft.AspNetCore.Authentication.OAuth (4)
OAuthHandler.cs (4)
210
if (context.Properties.Items.TryGetValue(OAuthConstants.
CodeVerifierKey
, out var codeVerifier))
212
tokenRequestParameters.Add(OAuthConstants.
CodeVerifierKey
, codeVerifier!);
213
context.Properties.Items.Remove(OAuthConstants.
CodeVerifierKey
);
320
properties.Items.Add(OAuthConstants.
CodeVerifierKey
, codeVerifier);
Microsoft.AspNetCore.Authentication.OpenIdConnect (4)
OpenIdConnectHandler.cs (4)
418
properties.Items.Add(OAuthConstants.
CodeVerifierKey
, codeVerifier);
1273
if (properties.Items.TryGetValue(OAuthConstants.
CodeVerifierKey
, out var codeVerifier))
1275
tokenEndpointRequest.Parameters.Add(OAuthConstants.
CodeVerifierKey
, codeVerifier);
1276
properties.Items.Remove(OAuthConstants.
CodeVerifierKey
);