<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="11.0.0-preview.2.26159.112" />

System.Runtime.CompilerServices.IsExternalInit

static class IsExternalInit
Reserved to be used by the compiler for tracking metadata. This class should not be used by developers in source code.
namespace Microsoft.Extensions.Caching.Distributed { public interface IBufferDistributedCache : IDistributedCache { bool TryGet(string key, IBufferWriter<byte> destination); ValueTask<bool> TryGetAsync(string key, IBufferWriter<byte> destination, CancellationToken token = default(CancellationToken)); void Set(string key, ReadOnlySequence<byte> value, DistributedCacheEntryOptions options); ValueTask SetAsync(string key, ReadOnlySequence<byte> value, DistributedCacheEntryOptions options, CancellationToken token = default(CancellationToken)); } } namespace System.Runtime.CompilerServices { internal static class IsExternalInit { } }