ITokenCache.SetAfterAccess(TokenCacheCallback) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets a delegate to be notified after any library method accesses the cache. This gives an option to the delegate to serialize a cache entry for the application and accounts specified in the TokenCacheNotificationArgs. See https://aka.ms/msal-net-token-cache-serialization. If you need async/task-based callbacks, please use SetAfterAccessAsync instead.
public void SetAfterAccess (Microsoft.Identity.Client.TokenCacheCallback afterAccess);
abstract member SetAfterAccess : Microsoft.Identity.Client.TokenCacheCallback -> unit
Public Sub SetAfterAccess (afterAccess As TokenCacheCallback)
Parameters
- afterAccess
- TokenCacheCallback
Delegate set in order to handle the cache serialization in the case where the HasStateChanged
member of the cache is true
Remarks
In the case where the delegate is used to serialize the cache entirely (not just a row), it might want to call SerializeMsalV3()