ITokenCacheSerializer.DeserializeMsalV2(Byte[]) Method

Definition

Caution

Support for the MSAL v2 token cache format will be dropped in the next major version

Deserializes the token cache to the MSAL.NET 2.x 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 void DeserializeMsalV2 (byte[] msalV2State);
[<System.Obsolete("Support for the MSAL v2 token cache format will be dropped in the next major version", false)>]
abstract member DeserializeMsalV2 : byte[] -> unit
Public Sub DeserializeMsalV2 (msalV2State As Byte())

Parameters

msalV2State
Byte[]

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.

Applies to