15 implementations of Create
InMemory.FunctionalTests (1)
src\Servers\Kestrel\shared\test\TestServiceContext.cs (1)
90public MemoryPool<byte> Create() => _memoryPoolFactory();
Interop.FunctionalTests (1)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create()
Microsoft.AspNetCore.Server.HttpSys (1)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create()
Microsoft.AspNetCore.Server.IIS (1)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create()
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\PinnedBlockMemoryPoolFactory.cs (1)
28public MemoryPool<byte> Create()
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create()
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
src\Servers\Kestrel\shared\test\TestServiceContext.cs (1)
90public MemoryPool<byte> Create() => _memoryPoolFactory();
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (2)
src\Servers\Kestrel\shared\DefaultSimpleMemoryPoolFactory.cs (1)
13public MemoryPool<byte> Create()
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create()
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create()
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
src\Servers\Kestrel\shared\DefaultSimpleMemoryPoolFactory.cs (1)
13public MemoryPool<byte> Create()
Sockets.BindTests (2)
src\Servers\Kestrel\shared\test\TestServiceContext.cs (1)
90public MemoryPool<byte> Create() => _memoryPoolFactory();
src\Servers\Kestrel\shared\test\TransportTestHelpers\DiagnosticMemoryPoolFactory.cs (1)
28public MemoryPool<byte> Create()
Sockets.FunctionalTests (2)
src\Servers\Kestrel\shared\test\TestServiceContext.cs (1)
90public MemoryPool<byte> Create() => _memoryPoolFactory();
src\Servers\Kestrel\shared\test\TransportTestHelpers\DiagnosticMemoryPoolFactory.cs (1)
28public MemoryPool<byte> Create()
7 references to Create
InMemory.FunctionalTests (1)
TestTransport\TestServer.cs (1)
73_memoryPool = context.MemoryPoolFactory.Create();
Microsoft.AspNetCore.Server.HttpSys (1)
HttpSysListener.cs (1)
58MemoryPool = memoryPoolFactory.Create();
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpServer.cs (1)
69_memoryPool = memoryPoolFactory.Create();
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeConnectionListener.cs (1)
43_memoryPool = options.MemoryPoolFactory.Create();
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (3)
Client\SocketConnectionFactory.cs (1)
30_memoryPool = options.Value.MemoryPoolFactory.Create();
SocketConnectionContextFactory.cs (2)
50var memoryPool = _options.MemoryPoolFactory.Create(); 65var memoryPool = _options.MemoryPoolFactory.Create();