5 writes to Type
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http3\Frames\Http3RawFrame.Data.cs (1)
11Type = Http3FrameType.Data;
Internal\Http3\Frames\Http3RawFrame.GoAway.cs (1)
11Type = Http3FrameType.GoAway;
Internal\Http3\Frames\Http3RawFrame.Headers.cs (1)
11Type = Http3FrameType.Headers;
Internal\Http3\Frames\Http3RawFrame.Settings.cs (1)
11Type = Http3FrameType.Settings;
Internal\Http3\Http3FrameReader.cs (1)
50frame.Type = (Http3FrameType)type;
8 references to Type
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http3\Frames\Http3RawFrame.cs (1)
16public string FormattedType => Http3Formatting.ToFormattedType(Type);
Internal\Http3\Http3ControlStream.cs (2)
299switch (_incomingFrame.Type) 315return ProcessUnknownFrameAsync(_incomingFrame.Type);
Internal\Http3\Http3FrameWriter.cs (2)
112buffer[0] = (byte)_outgoingFrame.Type; 256var headerLength = WriteHeader(_outgoingFrame.Type, _outgoingFrame.Length, _outputWriter);
Internal\Http3\Http3Stream.cs (1)
753return _incomingFrame.Type switch
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);