File tree 1 file changed +4
-2
lines changed
src/Security/Authentication/OpenIdConnect/src/Events
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,8 @@ public class OpenIdConnectEvents : RemoteAuthenticationEvents
54
54
public Func < TokenResponseReceivedContext , Task > OnTokenResponseReceived { get ; set ; } = context => Task . CompletedTask ;
55
55
56
56
/// <summary>
57
- /// Invoked when an IdToken has been validated and produced an AuthenticationTicket.
57
+ /// Invoked when an IdToken has been validated and produced an AuthenticationTicket. Note there are additional checks after this
58
+ /// event that validate other aspects of the authentication flow like the nonce.
58
59
/// </summary>
59
60
public Func < TokenValidatedContext , Task > OnTokenValidated { get ; set ; } = context => Task . CompletedTask ;
60
61
@@ -106,7 +107,8 @@ public class OpenIdConnectEvents : RemoteAuthenticationEvents
106
107
public virtual Task TokenResponseReceived ( TokenResponseReceivedContext context ) => OnTokenResponseReceived ( context ) ;
107
108
108
109
/// <summary>
109
- /// Invoked when an IdToken has been validated and produced an AuthenticationTicket.
110
+ /// Invoked when an IdToken has been validated and produced an AuthenticationTicket. Note there are additional checks after this
111
+ /// event that validate other aspects of the authentication flow like the nonce.
110
112
/// </summary>
111
113
public virtual Task TokenValidated ( TokenValidatedContext context ) => OnTokenValidated ( context ) ;
112
114
You can’t perform that action at this time.
0 commit comments