12 writes to Length
Microsoft.AspNetCore.Server.Kestrel.Core (12)
Internal\Http3\Frames\Http3RawFrame.Data.cs (1)
10Length = 0;
Internal\Http3\Frames\Http3RawFrame.GoAway.cs (1)
10Length = 0;
Internal\Http3\Frames\Http3RawFrame.Headers.cs (1)
10Length = 0;
Internal\Http3\Frames\Http3RawFrame.Settings.cs (1)
10Length = 0;
Internal\Http3\Http3FrameReader.cs (1)
49frame.Length = length;
Internal\Http3\Http3FrameWriter.cs (7)
124_outgoingFrame.Length = totalLength; 189_outgoingFrame.Length = (int)dataLength; 212_outgoingFrame.Length = dataPayloadLength; 226_outgoingFrame.Length = (int)dataLength; 243_outgoingFrame.Length = length; 272_outgoingFrame.Length = ContinueBytes.Length; 397_outgoingFrame.Length = _headerEncodingBuffer.WrittenCount;
5 references to Length
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http3\Frames\Http3RawFrame.cs (1)
20return $"{FormattedType} Length: {Length}";
Internal\Http3\Http3FrameWriter.cs (2)
256var headerLength = WriteHeader(_outgoingFrame.Type, _outgoingFrame.Length, _outputWriter); 259_unflushedBytes += headerLength + _outgoingFrame.Length;
Internal\Infrastructure\KestrelTrace.Http3.cs (2)
40Http3Log.Http3FrameReceived(_http3Logger, connectionId, Http3Formatting.ToFormattedType(frame.Type), streamId, frame.Length); 48Http3Log.Http3FrameSending(_http3Logger, connectionId, Http3Formatting.ToFormattedType(frame.Type), streamId, frame.Length);