14 lines
382 B
C#
14 lines
382 B
C#
using Microsoft.AspNetCore.Server.Kestrel.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);
|
|
}
|
|
}
|
|
}
|