1 write to _memoryPool
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeConnectionListener.cs (1)
43
_memoryPool
= options.MemoryPoolFactory();
3 references to _memoryPool
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (3)
Internal\NamedPipeConnectionListener.cs (3)
57
_inputOptions = new PipeOptions(
_memoryPool
, PipeScheduler.ThreadPool, PipeScheduler.Inline, maxReadBufferSize, maxReadBufferSize / 2, useSynchronizationContext: false);
58
_outputOptions = new PipeOptions(
_memoryPool
, PipeScheduler.Inline, PipeScheduler.ThreadPool, maxWriteBufferSize, maxWriteBufferSize / 2, useSynchronizationContext: false);
111
var connection = new NamedPipeConnection(this, stream, _endpoint, _log,
_memoryPool
, _inputOptions, _outputOptions);