TokenCache.SetBeforeAccess(TokenCacheCallback) Method

Definition

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

public void SetBeforeAccess (Microsoft.Identity.Client.TokenCacheCallback beforeAccess);
abstract member SetBeforeAccess : Microsoft.Identity.Client.TokenCacheCallback -> unit
override this.SetBeforeAccess : Microsoft.Identity.Client.TokenCacheCallback -> unit
Public Sub SetBeforeAccess (beforeAccess As TokenCacheCallback)

Parameters

beforeAccess
TokenCacheCallback

Delegate set in order to handle the cache deserialization

Implements

Remarks

In the case where the delegate is used to deserialize the cache, it might want to call Deserialize(Byte[])

Applies to