8 implementations of Create
Microsoft.AspNetCore.Server.HttpSys (1)
src\aspnetcore\src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Server.IIS (1)
src\aspnetcore\src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\PinnedBlockMemoryPoolFactory.cs (1)
27public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
src\aspnetcore\src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (2)
src\aspnetcore\src\Servers\Kestrel\shared\DefaultSimpleMemoryPoolFactory.cs (1)
13public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
src\aspnetcore\src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
src\aspnetcore\src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
src\aspnetcore\src\Servers\Kestrel\shared\DefaultSimpleMemoryPoolFactory.cs (1)
13public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
6 references to Create
Microsoft.AspNetCore.Server.HttpSys (1)
HttpSysListener.cs (1)
58MemoryPool = memoryPoolFactory.Create(new MemoryPoolOptions { Owner = "httpsys" });
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpServer.cs (1)
69_memoryPool = memoryPoolFactory.Create(new MemoryPoolOptions { Owner = "iis" });
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeConnectionListener.cs (1)
43_memoryPool = options.MemoryPoolFactory.Create(new MemoryPoolOptions { Owner = "kestrel" });
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (3)
Client\SocketConnectionFactory.cs (1)
30_memoryPool = options.Value.MemoryPoolFactory.Create(SocketConnectionFactoryOptions.MemoryPoolOptions);
SocketConnectionContextFactory.cs (2)
50var memoryPool = _options.MemoryPoolFactory.Create(SocketConnectionFactoryOptions.MemoryPoolOptions); 65var memoryPool = _options.MemoryPoolFactory.Create(SocketConnectionFactoryOptions.MemoryPoolOptions);