4 writes to _tailMemory
Microsoft.AspNetCore.HttpLogging (4)
BufferingStream.cs (2)
115_tailMemory = _tailMemory.Slice(bytes); 171_tailMemory = newSegment.AvailableMemory;
RequestBufferingStream.cs (1)
100_tailMemory = _tailMemory.Slice(innerCount);
ResponseBufferingStream.cs (1)
94_tailMemory = _tailMemory.Slice(innerCount);
9 references to _tailMemory
Microsoft.AspNetCore.HttpLogging (9)
BufferingStream.cs (5)
108if ((uint)bytes > (uint)_tailMemory.Length) 115_tailMemory = _tailMemory.Slice(bytes); 121return _tailMemory; 127return _tailMemory.Span; 143var bytesLeftInBuffer = _tailMemory.Length;
RequestBufferingStream.cs (2)
96if (span.Slice(0, innerCount).TryCopyTo(_tailMemory.Span)) 100_tailMemory = _tailMemory.Slice(innerCount);
ResponseBufferingStream.cs (2)
90if (slice.TryCopyTo(_tailMemory.Span)) 94_tailMemory = _tailMemory.Slice(innerCount);