aspnetcore/test/Microsoft.AspNetCore.Server.../MemoryPoolExtensions.cs

14 lines
391 B
C#

using Microsoft.AspNetCore.Server.Kestrel.Internal.Infrastructure;
namespace Microsoft.AspNetCore.Server.KestrelTests
{
public static class MemoryPoolExtensions
{
public static MemoryPoolIterator Add(this MemoryPoolIterator iterator, int count)
{
int actual;
return iterator.CopyTo(new byte[count], 0, count, out actual);
}
}
}