TokenCache.SetAfterAccess(TokenCacheCallback) Method

Definition

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

public void SetAfterAccess (Microsoft.Identity.Client.TokenCacheCallback afterAccess);
abstract member SetAfterAccess : Microsoft.Identity.Client.TokenCacheCallback -> unit
override this.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

Implements

Remarks

In the case where the delegate is used to serialize the cache entirely (not just a row), it might want to call Serialize()

Applies to