System.Runtime.CompilerServices.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
{
}
}