5 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.Quic (1)
src\aspnetcore\src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
2 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" });