IMemoryOwner<T>
Owner of MemoryT that is responsible for disposing the underlying memory appropriately.
namespace System.Buffers
{
public interface IMemoryOwner<T> : IDisposable
{
Memory<T> Memory { get; }
}
}