| File: Cache\IDistributedCacheTagHelperStorage.cs | Web Access |
| Project: src\aspnetcore\src\Mvc\Mvc.TagHelpers\src\Microsoft.AspNetCore.Mvc.TagHelpers.csproj (Microsoft.AspNetCore.Mvc.TagHelpers) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Extensions.Caching.Distributed; namespace Microsoft.AspNetCore.Mvc.TagHelpers.Cache; /// <summary> /// An implementation of this interface provides a service to /// cache distributed html fragments from the <distributed-cache> /// tag helper. /// </summary> public interface IDistributedCacheTagHelperStorage { /// <summary> /// Gets the content from the cache and deserializes it. /// </summary> /// <param name="key">The unique key to use in the cache.</param> /// <returns>The stored value if it exists, <value>null</value> otherwise.</returns> Task<byte[]> GetAsync(string key); /// <summary> /// Sets the content in the cache and serialized it. /// </summary> /// <param name="key">The unique key to use in the cache.</param> /// <param name="value">The value to cache.</param> /// <param name="options">The cache entry options.</param> Task SetAsync(string key, byte[] value, DistributedCacheEntryOptions options); }