We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb4fdce commit a215b92Copy full SHA for a215b92
articles/active-directory/develop/msal-net-token-cache-serialization.md
@@ -81,7 +81,9 @@ static class TokenCacheHelper
81
}
82
83
/// <summary>
84
- /// Path to the token cache
+ /// Path to the token cache. Note that this could be something different for instance for MSIX applications:
85
+ /// private static readonly string CacheFilePath =
86
+$"{Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)}\{AppName}\msalcache.bin";
87
/// </summary>
88
public static readonly string CacheFilePath = System.Reflection.Assembly.GetExecutingAssembly().Location + ".msalcache.bin3";
89
0 commit comments