5 writes to Type
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http3\Frames\Http3RawFrame.Data.cs (1)
11
Type
= Http3FrameType.Data;
Internal\Http3\Frames\Http3RawFrame.GoAway.cs (1)
11
Type
= Http3FrameType.GoAway;
Internal\Http3\Frames\Http3RawFrame.Headers.cs (1)
11
Type
= Http3FrameType.Headers;
Internal\Http3\Frames\Http3RawFrame.Settings.cs (1)
11
Type
= Http3FrameType.Settings;
Internal\Http3\Http3FrameReader.cs (1)
50
frame.
Type
= (Http3FrameType)type;
8 references to Type
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http3\Frames\Http3RawFrame.cs (1)
16
public string FormattedType => Http3Formatting.ToFormattedType(
Type
);
Internal\Http3\Http3ControlStream.cs (2)
299
switch (_incomingFrame.
Type
)
315
return ProcessUnknownFrameAsync(_incomingFrame.
Type
);
Internal\Http3\Http3FrameWriter.cs (2)
112
buffer[0] = (byte)_outgoingFrame.
Type
;
256
var headerLength = WriteHeader(_outgoingFrame.
Type
, _outgoingFrame.Length, _outputWriter);
Internal\Http3\Http3Stream.cs (1)
753
return _incomingFrame.
Type
switch
Internal\Infrastructure\KestrelTrace.Http3.cs (2)
40
Http3Log.Http3FrameReceived(_http3Logger, connectionId, Http3Formatting.ToFormattedType(frame.
Type
), streamId, frame.Length);
48
Http3Log.Http3FrameSending(_http3Logger, connectionId, Http3Formatting.ToFormattedType(frame.
Type
), streamId, frame.Length);