Skip to content
This repository was archived by the owner on Feb 23, 2025. It is now read-only.

Commit 2afc354

Browse files
authored
(Fix warning) Added missing annotation for new param in TokenRefreshedEventArgs (#370)
* Added Identity Token to TokenRefreshEventArgs This change allows updating the identity token cached at the client with the latest identity token coming from token renewal * Make Identity Token optional in TokenRefreshEventArgs to prevent breaking changes * Added missing annotation for new param in TokenRefreshedEventArgs (fixes related warning)
1 parent 3656b79 commit 2afc354

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/OidcClient/TokenRefreshedEventArgs.cs

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public class TokenRefreshedEventArgs : EventArgs
1717
/// <param name="accessToken">The access token.</param>
1818
/// <param name="refreshToken">The refresh token.</param>
1919
/// <param name="expiresIn">The expires in.</param>
20+
/// <param name="identityToken">The identity token (optional).</param>
2021
public TokenRefreshedEventArgs(string accessToken, string refreshToken, int expiresIn, string identityToken = null)
2122
{
2223
AccessToken = accessToken;

0 commit comments

Comments
 (0)