4 instantiations of MemoryPoolOptions
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 (1)
SocketConnectionFactoryOptions.cs (1)
72internal static readonly MemoryPoolOptions MemoryPoolOptions = new MemoryPoolOptions { Owner = "kestrel" };
10 references to MemoryPoolOptions
Microsoft.AspNetCore.Connections.Abstractions (1)
IMemoryPoolFactory.cs (1)
18MemoryPool<T> Create(MemoryPoolOptions? options = null);
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 (2)
SocketConnectionFactoryOptions.cs (1)
72internal static readonly MemoryPoolOptions MemoryPoolOptions = new MemoryPoolOptions { Owner = "kestrel" };
src\aspnetcore\src\Servers\Kestrel\shared\DefaultSimpleMemoryPoolFactory.cs (1)
13public MemoryPool<byte> Create(MemoryPoolOptions? options = null)