MsalMemoryTokenCacheProvider.ReadCacheBytesAsync 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.
Overloads
ReadCacheBytesAsync(String) |
Reads a blob from the serialization cache (identified by its key). |
ReadCacheBytesAsync(String, CacheSerializerHints) |
Method to be overridden by concrete cache serializers to Read the cache bytes. |
ReadCacheBytesAsync(String)
Reads a blob from the serialization cache (identified by 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
Token cache key.
Returns
Read Bytes.
Applies to
ReadCacheBytesAsync(String, CacheSerializerHints)
Method to be overridden by concrete cache serializers to Read the cache bytes.
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
Cache key.
- cacheSerializerHints
- CacheSerializerHints
Hints for the cache serialization implementation optimization.
Returns
Read bytes.