Share via


MsalSessionTokenCacheProvider.ReadCacheBytesAsync Method

Definition

Overloads

ReadCacheBytesAsync(String)

Read a blob representing the token cache from its key.

ReadCacheBytesAsync(String, CacheSerializerHints)

Read a blob representing the token cache from its key.

ReadCacheBytesAsync(String)

Read a blob representing the token cache from its key.

protected override System.Threading.Tasks.Task<byte[]?> ReadCacheBytesAsync (string cacheKey);
override this.ReadCacheBytesAsync : string -> System.Threading.Tasks.Task<byte[]>
Protected Overrides Function ReadCacheBytesAsync (cacheKey As String) As Task(Of Byte())

Parameters

cacheKey
String

Key representing the token cache (account or app).

Returns

Task<Byte[]>

Read blob.

Applies to

ReadCacheBytesAsync(String, CacheSerializerHints)

Read a blob representing the token cache from its key.

protected override System.Threading.Tasks.Task<byte[]?> ReadCacheBytesAsync (string cacheKey, Microsoft.Identity.Web.TokenCacheProviders.CacheSerializerHints cacheSerializerHints);
override this.ReadCacheBytesAsync : string * Microsoft.Identity.Web.TokenCacheProviders.CacheSerializerHints -> System.Threading.Tasks.Task<byte[]>
Protected Overrides Function ReadCacheBytesAsync (cacheKey As String, cacheSerializerHints As CacheSerializerHints) As Task(Of Byte())

Parameters

cacheKey
String

Key representing the token cache (account or app).

cacheSerializerHints
CacheSerializerHints

Hints for the cache serialization implementation optimization.

Returns

Task<Byte[]>

Read blob.

Applies to