File tree 2 files changed +5
-2
lines changed
Microsoft.Identity.Web/TokenCacheProviders
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 101
101
/2-WebApp-graph-user /2-4-Sovereign-Call-MSGraph /bin /Release /netcoreapp2.2
102
102
/Microsoft.Identity.Web.Test /bin /Release /netcoreapp2.2
103
103
/Microsoft.Identity.Web.Test /obj
104
+ /4-WebApp-your-API /4-2-B2C /.vs
105
+ /4-WebApp-your-API /4-2-B2C /Client /obj
106
+ /4-WebApp-your-API /4-2-B2C /TodoListService /obj
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ private async Task OnAfterAccessAsync(TokenCacheNotificationArgs args)
75
75
// if the access operation resulted in a cache update
76
76
if ( args . HasStateChanged )
77
77
{
78
- string cacheKey = GetCacheKey ( args . IsApplicationTokenCache ) ;
78
+ string cacheKey = GetCacheKey ( args . IsApplicationCache ) ;
79
79
if ( ! string . IsNullOrWhiteSpace ( cacheKey ) )
80
80
{
81
81
await WriteCacheBytesAsync ( cacheKey , args . TokenCache . SerializeMsalV3 ( ) ) . ConfigureAwait ( false ) ;
@@ -85,7 +85,7 @@ private async Task OnAfterAccessAsync(TokenCacheNotificationArgs args)
85
85
86
86
private async Task OnBeforeAccessAsync ( TokenCacheNotificationArgs args )
87
87
{
88
- string cacheKey = GetCacheKey ( args . IsApplicationTokenCache ) ;
88
+ string cacheKey = GetCacheKey ( args . IsApplicationCache ) ;
89
89
90
90
if ( ! string . IsNullOrEmpty ( cacheKey ) )
91
91
{
You can’t perform that action at this time.
0 commit comments