ITokenCacheSerializer.SerializeMsalV2 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.
Caution
Support for the MSAL v2 token cache format will be dropped in the next major version
Serializes the token cache to the MSAL.NET 2.x unified cache format, which is compatible with ADAL.NET v4 and other MSAL.NET v2 applications. If you need to maintain SSO between an application using ADAL 3.x or MSAL 2.x and this application using MSAL 3.x, you might also want to serialize and deserialize with SerializeAdalV3()/DeserializeAdalV3(Byte[]) or SerializeMsalV2()/DeserializeMsalV2(Byte[]), otherwise just use SerializeMsalV3()/DeserializeMsalV3(Byte[], Boolean).
[System.Obsolete("Support for the MSAL v2 token cache format will be dropped in the next major version", false)]
public byte[] SerializeMsalV2 ();
[<System.Obsolete("Support for the MSAL v2 token cache format will be dropped in the next major version", false)>]
abstract member SerializeMsalV2 : unit -> byte[]
Public Function SerializeMsalV2 () As Byte()
Returns
Byte stream representation of the cache
- Attributes
Remarks
SerializeMsalV3()/DeserializeMsalV3(Byte[], Boolean) is compatible with other MSAL libraries such as MSAL for Python and MSAL for Java.