ITokenCache.SetBeforeAccess(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 before any library method accesses the cache. This gives an option to the delegate to deserialize 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 SetBeforeAccessAsync instead.
public void SetBeforeAccess (Microsoft.Identity.Client.TokenCacheCallback beforeAccess);
abstract member SetBeforeAccess : Microsoft.Identity.Client.TokenCacheCallback -> unit
Public Sub SetBeforeAccess (beforeAccess As TokenCacheCallback)
Parameters
- beforeAccess
- TokenCacheCallback
Delegate set in order to handle the cache deserialization
Remarks
When the delegate is used to deserialize the cache, it might want to call DeserializeMsalV3(Byte[], Boolean)